mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
14 lines
261 B
C
14 lines
261 B
C
|
/*
|
||
|
* 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
|