diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-04-06 22:00:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:03 -0400 |
commit | 9133df726fdd3df0ca9efcaaae22442198851d65 (patch) | |
tree | f421739d93d4399cf0e1da968ce536a1068a16ce /drivers/char/esp.c | |
parent | d407e32efe060afa2b9a797a91376ebc65b4ce11 (diff) |
esp: fix section mismatch warning
Not critical.
WARNING: drivers/char/esp.o(.text+0x278): Section mismatch in reference from the function show_serial_version() to the variable .init.data:serial_version
The function show_serial_version() references
the variable __initdata serial_version.
This is often because show_serial_version lacks a __initdata
annotation or the annotation of serial_version is wrong.
WARNING: drivers/char/esp.o(.text+0x27d): Section mismatch in reference from the function show_serial_version() to the variable .init.data:serial_name
The function show_serial_version() references
the variable __initdata serial_name.
This is often because show_serial_version lacks a __initdata
annotation or the annotation of serial_name is wrong.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Andrew J. Robinson <arobinso@nyx.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/esp.c')
-rw-r--r-- | drivers/char/esp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/esp.c b/drivers/char/esp.c index 45ec263ec012..a5c59fc2b0ff 100644 --- a/drivers/char/esp.c +++ b/drivers/char/esp.c | |||
@@ -2258,7 +2258,7 @@ static int esp_open(struct tty_struct *tty, struct file *filp) | |||
2258 | * driver. | 2258 | * driver. |
2259 | */ | 2259 | */ |
2260 | 2260 | ||
2261 | static void show_serial_version(void) | 2261 | static void __init show_serial_version(void) |
2262 | { | 2262 | { |
2263 | printk(KERN_INFO "%s version %s (DMA %u)\n", | 2263 | printk(KERN_INFO "%s version %s (DMA %u)\n", |
2264 | serial_name, serial_version, dma); | 2264 | serial_name, serial_version, dma); |