Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1efa6469 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Linus Torvalds
Browse files

[PATCH] block/floppy: fix section mismatch warnings



In latest -mm a number of section mismatch warnings are generated for
floppy.o like the following:

WARNING: drivers/block/floppy.o - Section mismatch: reference to    \
.init.data: from .text between 'init_module' (at offset 0x6976) and \
'cleanup_module'

The warning are caused by a reference to floppy_init() which is __init from
init_module() which is not declared __init.  Declaring init_module() _init
fixes this.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent fbd8ad30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4594,7 +4594,7 @@ static void __init parse_floppy_cfg_string(char *cfg)
	}
}

int init_module(void)
int __init init_module(void)
{
	if (floppy)
		parse_floppy_cfg_string(floppy);