blob: 631a1ad2d108d27e350f27ad79445dea4ab45a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|