diff options
author | Emil Medve <Emilian.Medve@Freescale.com> | 2008-05-22 18:40:16 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-06-08 23:42:30 -0400 |
commit | d33b78df142177d51de0ed0c4f3e57c8b5e8ff89 (patch) | |
tree | 36e6cdad4b3f90e927f8aa93bbf87b89ede93f8c /arch | |
parent | bacd73ae76c310bc3c71d21a2864746fd9696d3c (diff) |
powerpc: Add the PC speaker only when requested
This eliminates this minor boot-time debugging error message:
[ 1.316451] calling add_pcspkr+0x0/0x84
[ 1.316478] initcall add_pcspkr+0x0/0x84 returned -19 after 0 msecs
Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/setup-common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index db540eab09f4..61a3f4132087 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -500,6 +500,7 @@ void __init smp_setup_cpu_sibling_map(void) | |||
500 | } | 500 | } |
501 | #endif /* CONFIG_SMP */ | 501 | #endif /* CONFIG_SMP */ |
502 | 502 | ||
503 | #ifdef CONFIG_PCSPKR_PLATFORM | ||
503 | static __init int add_pcspkr(void) | 504 | static __init int add_pcspkr(void) |
504 | { | 505 | { |
505 | struct device_node *np; | 506 | struct device_node *np; |
@@ -522,6 +523,7 @@ static __init int add_pcspkr(void) | |||
522 | return ret; | 523 | return ret; |
523 | } | 524 | } |
524 | device_initcall(add_pcspkr); | 525 | device_initcall(add_pcspkr); |
526 | #endif /* CONFIG_PCSPKR_PLATFORM */ | ||
525 | 527 | ||
526 | void probe_machine(void) | 528 | void probe_machine(void) |
527 | { | 529 | { |