From: Randy Dunlap Priority: not critical. Make __mcdx_init() __init and static. Saves a little memory. Fix section mismatch warning and make the function static while there: WARNING: drivers/cdrom/mcdx.o - Section mismatch: reference to .init.text: from .text between 'init_module' (at offset 0x8be) and 'mcdx_transfer' Signed-off-by: Randy Dunlap Cc: Jens Axboe Signed-off-by: Andrew Morton --- drivers/cdrom/mcdx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/cdrom/mcdx.c~cdrom-mcdx-section-fixes drivers/cdrom/mcdx.c --- devel/drivers/cdrom/mcdx.c~cdrom-mcdx-section-fixes 2006-06-08 21:13:29.000000000 -0700 +++ devel-akpm/drivers/cdrom/mcdx.c 2006-06-08 21:13:29.000000000 -0700 @@ -1006,7 +1006,7 @@ static int mcdx_talk(struct s_drive_stuf /* MODULE STUFF ***********************************************************/ -int __mcdx_init(void) +static int __init __mcdx_init(void) { int i; int drives = 0; _