diff options
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/kernel/early_printk.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/sh64/kernel/early_printk.c b/arch/sh64/kernel/early_printk.c index 8c8a76e180aa..4f9131123672 100644 --- a/arch/sh64/kernel/early_printk.c +++ b/arch/sh64/kernel/early_printk.c | |||
@@ -79,7 +79,7 @@ static struct console sh_console = { | |||
79 | .name = "scifcon", | 79 | .name = "scifcon", |
80 | .write = sh_console_write, | 80 | .write = sh_console_write, |
81 | .setup = sh_console_setup, | 81 | .setup = sh_console_setup, |
82 | .flags = CON_PRINTBUFFER, | 82 | .flags = CON_PRINTBUFFER | CON_BOOT, |
83 | .index = -1, | 83 | .index = -1, |
84 | }; | 84 | }; |
85 | 85 | ||
@@ -97,9 +97,3 @@ void __init enable_early_printk(void) | |||
97 | 97 | ||
98 | register_console(&sh_console); | 98 | register_console(&sh_console); |
99 | } | 99 | } |
100 | |||
101 | void disable_early_printk(void) | ||
102 | { | ||
103 | unregister_console(&sh_console); | ||
104 | } | ||
105 | |||