diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-01 00:24:54 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-01 00:24:54 -0400 |
commit | bc95f3669f5e6f63cf0b84fe4922c3c6dd4aa775 (patch) | |
tree | 427fcf2a7287c16d4b5aa6cbf494d59579a6a8b1 /arch/mips/kernel/setup.c | |
parent | 3d29cdff999c37b3876082278a8134a0642a02cd (diff) | |
parent | dc87c3985e9b442c60994308a96f887579addc39 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
drivers/usb/input/Makefile
drivers/usb/input/gtco.c
Diffstat (limited to 'arch/mips/kernel/setup.c')
-rw-r--r-- | arch/mips/kernel/setup.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 394540fad769..4975da0bfb63 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
@@ -525,6 +525,14 @@ void __init setup_arch(char **cmdline_p) | |||
525 | { | 525 | { |
526 | cpu_probe(); | 526 | cpu_probe(); |
527 | prom_init(); | 527 | prom_init(); |
528 | |||
529 | #ifdef CONFIG_EARLY_PRINTK | ||
530 | { | ||
531 | extern void setup_early_printk(void); | ||
532 | |||
533 | setup_early_printk(); | ||
534 | } | ||
535 | #endif | ||
528 | cpu_report(); | 536 | cpu_report(); |
529 | 537 | ||
530 | #if defined(CONFIG_VT) | 538 | #if defined(CONFIG_VT) |
@@ -543,7 +551,7 @@ void __init setup_arch(char **cmdline_p) | |||
543 | #endif | 551 | #endif |
544 | } | 552 | } |
545 | 553 | ||
546 | int __init fpu_disable(char *s) | 554 | static int __init fpu_disable(char *s) |
547 | { | 555 | { |
548 | int i; | 556 | int i; |
549 | 557 | ||
@@ -555,7 +563,7 @@ int __init fpu_disable(char *s) | |||
555 | 563 | ||
556 | __setup("nofpu", fpu_disable); | 564 | __setup("nofpu", fpu_disable); |
557 | 565 | ||
558 | int __init dsp_disable(char *s) | 566 | static int __init dsp_disable(char *s) |
559 | { | 567 | { |
560 | cpu_data[0].ases &= ~MIPS_ASE_DSP; | 568 | cpu_data[0].ases &= ~MIPS_ASE_DSP; |
561 | 569 | ||