diff options
author | Jan Beulich <jbeulich@novell.com> | 2006-01-11 16:47:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:05:04 -0500 |
commit | 2a2d5924c249e0f73aa00d617f8d5e242ea1430d (patch) | |
tree | 2458187ff2b5eea03f269e15acf3532f351f8fcb /arch/i386 | |
parent | 4092bdebab46235d69fcd68afc710cddad550892 (diff) |
[PATCH] i386/x86-64: make setup_early_printk() usage consistent
The explicit and implicit calls to setup_early_printk() were passing
inconsistent arguments.
Signed-Off-By: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/setup.c b/arch/i386/kernel/setup.c index a720f743ea6e..51e513b4f72d 100644 --- a/arch/i386/kernel/setup.c +++ b/arch/i386/kernel/setup.c | |||
@@ -1584,7 +1584,7 @@ void __init setup_arch(char **cmdline_p) | |||
1584 | if (s) { | 1584 | if (s) { |
1585 | extern void setup_early_printk(char *); | 1585 | extern void setup_early_printk(char *); |
1586 | 1586 | ||
1587 | setup_early_printk(s); | 1587 | setup_early_printk(strchr(s, '=') + 1); |
1588 | printk("early console enabled\n"); | 1588 | printk("early console enabled\n"); |
1589 | } | 1589 | } |
1590 | } | 1590 | } |