diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-03-03 12:35:15 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-03-09 13:05:07 -0500 |
commit | cec2f0ca29fe99eec5e4012e5fb341fce64e578b (patch) | |
tree | 7a40c70b7ae91f5d615301036c5730ced970aaed /arch | |
parent | cf028d1715cfa8db1ad95ed9ee479b7a0b9e1cc5 (diff) |
[MIPS] A struct console.setup function may not be __init.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/arc/arc_con.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/arc/arc_con.c b/arch/mips/arc/arc_con.c index 51785a6a7328..bc32fe64f42a 100644 --- a/arch/mips/arc/arc_con.c +++ b/arch/mips/arc/arc_con.c | |||
@@ -24,7 +24,7 @@ static void prom_console_write(struct console *co, const char *s, | |||
24 | } | 24 | } |
25 | } | 25 | } |
26 | 26 | ||
27 | static int __init prom_console_setup(struct console *co, char *options) | 27 | static int prom_console_setup(struct console *co, char *options) |
28 | { | 28 | { |
29 | return !(prom_flags & PROM_FLAG_USE_AS_CONSOLE); | 29 | return !(prom_flags & PROM_FLAG_USE_AS_CONSOLE); |
30 | } | 30 | } |