aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/acpi/apei.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/acpi/apei.h')
-rw-r--r--include/acpi/apei.h13
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 @@
+/*
+ * 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