From 89d1d0ab4d99e1e0fe193352e1dd857787a0bfc0 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Thu, 29 Jun 2006 15:18:50 -0700 Subject: [PATCH] [SERIAL] sunsab: Fix section mis-match errors. sunsab_init_one() needs to be __devinit, not __init Signed-off-by: David S. Miller --- drivers/serial/sunsab.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index 8d3c7e2..141fedb 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c @@ -976,10 +976,10 @@ static inline struct console *SUNSAB_CONSOLE(void) #define sunsab_console_init() do { } while (0) #endif -static int __init sunsab_init_one(struct uart_sunsab_port *up, - struct of_device *op, - unsigned long offset, - int line) +static int __devinit sunsab_init_one(struct uart_sunsab_port *up, + struct of_device *op, + unsigned long offset, + int line) { up->port.line = line; up->port.dev = &op->dev; -- 2.7.4