diff options
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/apei.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/acpi/apei.h b/include/acpi/apei.h new file mode 100644 index 000000000000..631a1ad2d108 --- /dev/null +++ b/include/acpi/apei.h | |||
@@ -0,0 +1,13 @@ | |||
1 | /* | ||
2 | * apei.h - ACPI Platform Error Interface | ||
3 | */ | ||
4 | |||
5 | #ifndef ACPI_APEI_H | ||
6 | #define ACPI_APEI_H | ||
7 | |||
8 | extern int hest_disable; | ||
9 | |||
10 | typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data); | ||
11 | int apei_hest_parse(apei_hest_func_t func, void *data); | ||
12 | |||
13 | #endif | ||