diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2006-03-25 06:07:11 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 11:22:53 -0500 |
commit | fbd8ad30596409070801832335d3ea8cf1513ded (patch) | |
tree | 4612b4565fe8de01f28a72d439742c91995fec05 /drivers/ide | |
parent | c32ccd87bfd1414b0aabfcd8dbc7539ad23bcbaa (diff) |
[PATCH] ide: fix section mismatch warning
In latest -mm ide-code.o gave a number of warnings like the following:
WARNING: drivers/ide/ide-core.o - Section mismatch: reference to \
.init.text: from .text between 'init_module' (at offset 0x1f97) and \
'cleanup_module'
The warning was caused by init_module() calling parse_option() and
ide_init() both declared __init.
Declaring init_module() __init fixes the warnings.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@elka.pw.edu.pl>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c index b2cc43702f65..3fdab563fec2 100644 --- a/drivers/ide/ide.c +++ b/drivers/ide/ide.c | |||
@@ -2058,7 +2058,7 @@ static void __init parse_options (char *line) | |||
2058 | } | 2058 | } |
2059 | } | 2059 | } |
2060 | 2060 | ||
2061 | int init_module (void) | 2061 | int __init init_module (void) |
2062 | { | 2062 | { |
2063 | parse_options(options); | 2063 | parse_options(options); |
2064 | return ide_init(); | 2064 | return ide_init(); |