summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorPiotr Kaczuba <pepe@attika.ath.cx>2006-06-26 13:59:38 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2006-07-24 20:35:19 -0700
commit395e8c5b6b0a3ceaf5e95b79f327028a8a48f481 (patch)
tree255f19c291c2b652b2f58627da429c2cb3c88271 /arch
parent14c620f9a7f2627953d6d52f196a5773d379533d (diff)
x86_64: Fix modular pc speaker
It turned out that the following change is needed when the speaker is compiled as a module. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Chris Wright <chrisw@sous-sol.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86_64/kernel/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c
index 655b9192eeb3..e8d5f84417ee 100644
--- a/arch/x86_64/kernel/setup.c
+++ b/arch/x86_64/kernel/setup.c
@@ -1440,7 +1440,7 @@ struct seq_operations cpuinfo_op = {
.show = show_cpuinfo,
};
-#ifdef CONFIG_INPUT_PCSPKR
+#if defined(CONFIG_INPUT_PCSPKR) || defined(CONFIG_INPUT_PCSPKR_MODULE)
#include <linux/platform_device.h>
static __init int add_pcspkr(void)
{