From: Franck Bui-Huu Date: Thu, 3 May 2007 10:58:54 +0000 (+0200) Subject: [MIPS] early_printk: use init section X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ca4437d4a58147aa975f3b4ad8f6cb35dfa43bdc;p=deliverable%2Flinux.git [MIPS] early_printk: use init section Signed-off-by: Franck Bui-Huu Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/early_printk.c b/arch/mips/kernel/early_printk.c index 4fa54b230c09..818d7c350a2b 100644 --- a/arch/mips/kernel/early_printk.c +++ b/arch/mips/kernel/early_printk.c @@ -12,7 +12,8 @@ extern void prom_putchar(char); -static void early_console_write(struct console *con, const char *s, unsigned n) +static void __init +early_console_write(struct console *con, const char *s, unsigned n) { while (n-- && *s) { if (*s == '\n') @@ -22,7 +23,7 @@ static void early_console_write(struct console *con, const char *s, unsigned n) } } -static struct console early_console = { +static struct console early_console __initdata = { .name = "early", .write = early_console_write, .flags = CON_PRINTBUFFER | CON_BOOT,