summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHuang Ying2011-07-13 07:14:13 +0200
committerLen Brown2011-07-14 05:29:52 +0200
commitca7cc5110a313a609da40ae948978a585352564b (patch)
tree1b170de2a91579251e25f7c2eaf20891e20f1622 /drivers
parentACPI, APEI, HEST, Detect duplicated hardware error source ID (diff)
downloadkernel-qcow2-linux-ca7cc5110a313a609da40ae948978a585352564b.tar.gz
kernel-qcow2-linux-ca7cc5110a313a609da40ae948978a585352564b.tar.xz
kernel-qcow2-linux-ca7cc5110a313a609da40ae948978a585352564b.zip
ACPI, APEI, ERST, Prevent erst_dbg from loading if ERST is disabled
erst_dbg module can not work when ERST is disabled. So disable module loading to provide clearer information to user. Signed-off-by: Huang Ying <ying.huang@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/apei/erst-dbg.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/acpi/apei/erst-dbg.c b/drivers/acpi/apei/erst-dbg.c
index a4cfb64c86a1..cb04aa43c33a 100644
--- a/drivers/acpi/apei/erst-dbg.c
+++ b/drivers/acpi/apei/erst-dbg.c
@@ -213,6 +213,10 @@ static struct miscdevice erst_dbg_dev = {
static __init int erst_dbg_init(void)
{
+ if (erst_disable) {
+ pr_info(ERST_DBG_PFX "ERST support is disabled.\n");
+ return -ENODEV;
+ }
return misc_register(&erst_dbg_dev);
}