[PATCH 1/11] /drivers/block/floppy.c replaced init_module&cleanup_modulewith module_init&module_exit

From: Jon Schindler
Date: Wed Mar 05 2008 - 00:49:28 EST


Replaced init_module and cleanup_module with static functions and module_init/module_exit.

Signed-off-by: Jon Schindler <jkschind@xxxxxxxxx>
---
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 32c79a5..9a3d509 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -4528,14 +4528,15 @@ static void __init parse_floppy_cfg_string(char *cfg)
}
}

-int __init init_module(void)
+static int __init floppy_module_init(void)
{
if (floppy)
parse_floppy_cfg_string(floppy);
return floppy_init();
}
+module_init(floppy_module_init);

-void cleanup_module(void)
+static void __exit floppy_module_exit(void)
{
int drive;

@@ -4567,6 +4568,7 @@ void cleanup_module(void)

wait_for_completion(&device_release);
}
+module_exit(floppy_module_exit);

module_param(floppy, charp, 0);
module_param(FLOPPY_IRQ, int, 0);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/