diff options
author | Len Brown <len.brown@intel.com> | 2011-07-16 18:14:21 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-08-03 11:15:59 -0400 |
commit | a7e09d450b2e0b068e850d103b6ee1af537d1910 (patch) | |
tree | b38756299aeb751ea88a143560ceae0241471dc6 /include/acpi/apei.h | |
parent | ba61ca4aab47441f1c6cec28a9a6aa0489fd1df3 (diff) | |
download | linux-stable-a7e09d450b2e0b068e850d103b6ee1af537d1910.tar.gz linux-stable-a7e09d450b2e0b068e850d103b6ee1af537d1910.tar.bz2 linux-stable-a7e09d450b2e0b068e850d103b6ee1af537d1910.zip |
ACPI: APEI build fix
as GHES is optional...
When # CONFIG_ACPI_APEI_GHES is not set:
(.init.text+0x4c22): undefined reference to `ghes_disable'
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/apei.h')
-rw-r--r-- | include/acpi/apei.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/acpi/apei.h b/include/acpi/apei.h index d40bc5521fcb..51a527d24a8a 100644 --- a/include/acpi/apei.h +++ b/include/acpi/apei.h @@ -18,7 +18,11 @@ extern int hest_disable; extern int erst_disable; +#ifdef CONFIG_ACPI_APEI_GHES extern int ghes_disable; +#else +#define ghes_disable 1 +#endif #ifdef CONFIG_ACPI_APEI void __init acpi_hest_init(void); |