diff options
Diffstat (limited to 'include')
-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 00000000000..631a1ad2d10 --- /dev/null +++ b/include/acpi/apei.h @@ -0,0 +1,13 @@ +/* + * apei.h - ACPI Platform Error Interface + */ + +#ifndef ACPI_APEI_H +#define ACPI_APEI_H + +extern int hest_disable; + +typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data); +int apei_hest_parse(apei_hest_func_t func, void *data); + +#endif |