diff options
author | Ishizaki Kou <kou.ishizaki@toshiba.co.jp> | 2007-07-26 20:00:56 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-17 11:01:50 +1000 |
commit | b090b3388b6ea5d1003260daa0a997f4a1c4acc5 (patch) | |
tree | bd01e9329978b2d34bdd42b0240051189eb8eb22 /arch/powerpc/platforms/celleb/scc_sio.c | |
parent | e5b9187b16993e4bb6799185e266f68e26663bee (diff) |
[POWERPC] Fix celleb sio section warning
Fix following warning:
WARNING: vmlinux.o(.text+0x45fd4): Section mismatch: reference to .init.text:.early_serial_txx9_setup (between '.txx9_serial_init' and '.txx9_serial_config')
Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/celleb/scc_sio.c')
-rw-r--r-- | arch/powerpc/platforms/celleb/scc_sio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/celleb/scc_sio.c b/arch/powerpc/platforms/celleb/scc_sio.c index bcd25f54d98..d219b60a4a8 100644 --- a/arch/powerpc/platforms/celleb/scc_sio.c +++ b/arch/powerpc/platforms/celleb/scc_sio.c @@ -39,7 +39,7 @@ static struct { { 0x800, 1 } /* 0xFF2800 */ }; -static int txx9_serial_init(void) +static int __init txx9_serial_init(void) { extern int early_serial_txx9_setup(struct uart_port *port); struct device_node *node; |