mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Based on 1 normalized pattern(s): this file is released under the gplv2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 68 file(s). Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Armijn Hemel <[email protected]> Reviewed-by: Allison Randal <[email protected]> Cc: [email protected] Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
18 lines
370 B
C
18 lines
370 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* hed.h - ACPI Hardware Error Device
|
|
*
|
|
* Copyright (C) 2009, Intel Corp.
|
|
* Author: Huang Ying <[email protected]>
|
|
*/
|
|
|
|
#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
|