mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
801eab8118
Hardware Error Device (PNP0C33) is used to report some hardware errors notified via SCI, mainly the corrected errors. Some APEI Generic Hardware Error Source (GHES) may use SCI on hardware error device to notify hardware error to kernel. After receiving notification from ACPI core, it is forwarded to all listeners via a notifier chain. The listener such as APEI GHES should check corresponding error source for new events when notified. Signed-off-by: Huang Ying <ying.huang@intel.com> Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
19 lines
371 B
C
19 lines
371 B
C
/*
|
|
* hed.h - ACPI Hardware Error Device
|
|
*
|
|
* Copyright (C) 2009, Intel Corp.
|
|
* Author: Huang Ying <ying.huang@intel.com>
|
|
*
|
|
* This file is released under the GPLv2.
|
|
*/
|
|
|
|
#ifndef ACPI_HED_H
|
|
#define ACPI_HED_H
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
int register_acpi_hed_notifier(struct notifier_block *nb);
|
|
void unregister_acpi_hed_notifier(struct notifier_block *nb);
|
|
|
|
#endif
|