crypto: atmel-sha - remove unnecessary static in atmel_sha_remove()
[linux-stable.git] / include / linux / efi-bgrt.h
blobe6f624b53c3d89c6ba575bb61a3d868a251473ae
1 #ifndef _LINUX_EFI_BGRT_H
2 #define _LINUX_EFI_BGRT_H
4 #include <linux/acpi.h>
6 #ifdef CONFIG_ACPI_BGRT
8 void efi_bgrt_init(struct acpi_table_header *table);
9 int __init acpi_parse_bgrt(struct acpi_table_header *table);
11 /* The BGRT data itself; only valid if bgrt_image != NULL. */
12 extern size_t bgrt_image_size;
13 extern struct acpi_table_bgrt bgrt_tab;
15 #else /* !CONFIG_ACPI_BGRT */
17 static inline void efi_bgrt_init(struct acpi_table_header *table) {}
18 static inline int __init acpi_parse_bgrt(struct acpi_table_header *table)
20 return 0;
23 #endif /* !CONFIG_ACPI_BGRT */
25 #endif /* _LINUX_EFI_BGRT_H */