diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 13:38:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 13:38:02 -0400 |
commit | 3aed77bc84013fced136977b7cc17fff60eddf7a (patch) | |
tree | 75ee4060f58f033deb16771a303fb55dd370b6f9 /arch/ppc64/kernel/udbg.c | |
parent | 0b968d23610d65a46299347b141a687e207bd294 (diff) | |
parent | b2ad7b5e8115582cdf5bbda065aa516c24d62c21 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/paulus/ppc64-2.6
Diffstat (limited to 'arch/ppc64/kernel/udbg.c')
-rw-r--r-- | arch/ppc64/kernel/udbg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/ppc64/kernel/udbg.c b/arch/ppc64/kernel/udbg.c index ed6766e21f5a..d49c3613c8ec 100644 --- a/arch/ppc64/kernel/udbg.c +++ b/arch/ppc64/kernel/udbg.c | |||
@@ -158,14 +158,20 @@ static struct console udbg_console = { | |||
158 | .index = -1, | 158 | .index = -1, |
159 | }; | 159 | }; |
160 | 160 | ||
161 | static int early_console_initialized; | ||
162 | |||
161 | void __init disable_early_printk(void) | 163 | void __init disable_early_printk(void) |
162 | { | 164 | { |
165 | if (!early_console_initialized) | ||
166 | return; | ||
163 | unregister_console(&udbg_console); | 167 | unregister_console(&udbg_console); |
168 | early_console_initialized = 0; | ||
164 | } | 169 | } |
165 | 170 | ||
166 | /* called by setup_system */ | 171 | /* called by setup_system */ |
167 | void register_early_udbg_console(void) | 172 | void register_early_udbg_console(void) |
168 | { | 173 | { |
174 | early_console_initialized = 1; | ||
169 | register_console(&udbg_console); | 175 | register_console(&udbg_console); |
170 | } | 176 | } |
171 | 177 | ||