aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/serial
diff options
context:
space:
mode:
authorJes Sorensen <jes@sgi.com>2007-07-15 23:42:02 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-16 09:05:53 -0700
commit17e0c7cc1dfd8f49b67160b678297b88e545cc40 (patch)
tree3e1479a290ae33c0ab30726522c5b15ea4cfb6cd /drivers/serial
parentcompat32: ignore the LOOP_CLR_FD ioctl (diff)
downloadlinux-dev-17e0c7cc1dfd8f49b67160b678297b88e545cc40.tar.xz
linux-dev-17e0c7cc1dfd8f49b67160b678297b88e545cc40.zip
sn_console section mismatch warning
Do not mark sn_sal_console_setup as __init since it's referenced from non init data structures. Signed-off-by: Jes Sorensen <jes@sgi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/sn_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/sn_console.c b/drivers/serial/sn_console.c
index a27e9e92cb5e..41fc61264443 100644
--- a/drivers/serial/sn_console.c
+++ b/drivers/serial/sn_console.c
@@ -759,7 +759,7 @@ static void __init sn_sal_switch_to_interrupts(struct sn_cons_port *port)
*/
static void sn_sal_console_write(struct console *, const char *, unsigned);
-static int __init sn_sal_console_setup(struct console *, char *);
+static int sn_sal_console_setup(struct console *, char *);
static struct uart_driver sal_console_uart;
extern struct tty_driver *uart_console_device(struct console *, int *);
@@ -1006,7 +1006,7 @@ sn_sal_console_write(struct console *co, const char *s, unsigned count)
* here so providing it is easier.
*
*/
-static int __init sn_sal_console_setup(struct console *co, char *options)
+static int sn_sal_console_setup(struct console *co, char *options)
{
return 0;
}