diff options
author | Martin Habets <errandir_news@mph.eclipse.co.uk> | 2006-10-10 17:44:01 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-12 02:56:53 -0400 |
commit | eba8cefc789f6e51a79363604a7db1dba6a678cb (patch) | |
tree | cc21f985a668dbb242497e9de88f16a55363e4f8 /drivers/serial/sunzilog.c | |
parent | e3096de34c35683bc233f76d4e86562f1d782d0d (diff) |
[SPARC32]: Fix sparc32 modpost warnings with sunzilog
Fix this 2.6.19-rc1 build warnings from modpost:
WARNING: vmlinux - Section mismatch: reference to .init.text:sunzilog_console_setup from .data between 'sunzilog_console' (at offset 0x8394) and 'devices_subsys'
Signed-off-by: Martin Habets <errandir_news@mph.eclipse.co.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/serial/sunzilog.c')
-rw-r--r-- | drivers/serial/sunzilog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/serial/sunzilog.c b/drivers/serial/sunzilog.c index 73dd2eedaaad..b2cc703b2b9e 100644 --- a/drivers/serial/sunzilog.c +++ b/drivers/serial/sunzilog.c | |||
@@ -1182,7 +1182,7 @@ static int __init sunzilog_console_setup(struct console *con, char *options) | |||
1182 | return 0; | 1182 | return 0; |
1183 | } | 1183 | } |
1184 | 1184 | ||
1185 | static struct console sunzilog_console = { | 1185 | static struct console sunzilog_console_ops = { |
1186 | .name = "ttyS", | 1186 | .name = "ttyS", |
1187 | .write = sunzilog_console_write, | 1187 | .write = sunzilog_console_write, |
1188 | .device = uart_console_device, | 1188 | .device = uart_console_device, |
@@ -1208,10 +1208,10 @@ static inline struct console *SUNZILOG_CONSOLE(void) | |||
1208 | if (i == NUM_CHANNELS) | 1208 | if (i == NUM_CHANNELS) |
1209 | return NULL; | 1209 | return NULL; |
1210 | 1210 | ||
1211 | sunzilog_console.index = i; | 1211 | sunzilog_console_ops.index = i; |
1212 | sunzilog_port_table[i].flags |= SUNZILOG_FLAG_IS_CONS; | 1212 | sunzilog_port_table[i].flags |= SUNZILOG_FLAG_IS_CONS; |
1213 | 1213 | ||
1214 | return &sunzilog_console; | 1214 | return &sunzilog_console_ops; |
1215 | } | 1215 | } |
1216 | 1216 | ||
1217 | #else | 1217 | #else |