blob: 608ce3400f63358fccdb5363cea853117c4d4bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _EDK2_CAPSULES_H_
#define _EDK2_CAPSULES_H_
#if CONFIG(DRIVERS_EFI_UPDATE_CAPSULES)
void efi_parse_capsules(void);
void efi_add_capsules_to_bootmem(void);
#else
static inline void efi_parse_capsules(void) { }
static inline void efi_add_capsules_to_bootmem(void) { }
#endif
#endif /* _EDK2_CAPSULES_H_ */
|