[PATCH] ide: add missing __init tags to device drivers

Also remove bogus comments for idefloppy_init() and idetape_init().
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent e07bc709
...@@ -3510,8 +3510,8 @@ static void __exit ide_cdrom_exit(void) ...@@ -3510,8 +3510,8 @@ static void __exit ide_cdrom_exit(void)
{ {
driver_unregister(&ide_cdrom_driver.gen_driver); driver_unregister(&ide_cdrom_driver.gen_driver);
} }
static int ide_cdrom_init(void) static int __init ide_cdrom_init(void)
{ {
return driver_register(&ide_cdrom_driver.gen_driver); return driver_register(&ide_cdrom_driver.gen_driver);
} }
......
...@@ -1266,7 +1266,7 @@ static void __exit idedisk_exit (void) ...@@ -1266,7 +1266,7 @@ static void __exit idedisk_exit (void)
driver_unregister(&idedisk_driver.gen_driver); driver_unregister(&idedisk_driver.gen_driver);
} }
static int idedisk_init (void) static int __init idedisk_init(void)
{ {
return driver_register(&idedisk_driver.gen_driver); return driver_register(&idedisk_driver.gen_driver);
} }
......
...@@ -2191,10 +2191,7 @@ static void __exit idefloppy_exit (void) ...@@ -2191,10 +2191,7 @@ static void __exit idefloppy_exit (void)
driver_unregister(&idefloppy_driver.gen_driver); driver_unregister(&idefloppy_driver.gen_driver);
} }
/* static int __init idefloppy_init(void)
* idefloppy_init will register the driver for each floppy.
*/
static int idefloppy_init (void)
{ {
printk("ide-floppy driver " IDEFLOPPY_VERSION "\n"); printk("ide-floppy driver " IDEFLOPPY_VERSION "\n");
return driver_register(&idefloppy_driver.gen_driver); return driver_register(&idefloppy_driver.gen_driver);
......
...@@ -4916,10 +4916,7 @@ static void __exit idetape_exit (void) ...@@ -4916,10 +4916,7 @@ static void __exit idetape_exit (void)
unregister_chrdev(IDETAPE_MAJOR, "ht"); unregister_chrdev(IDETAPE_MAJOR, "ht");
} }
/* static int __init idetape_init(void)
* idetape_init will register the driver for each tape.
*/
static int idetape_init (void)
{ {
int error = 1; int error = 1;
idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape"); idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment