diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 09:42:33 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 09:42:33 -0700 |
commit | 85417aef44fc58b08773117ceb1bc6ca5684e973 (patch) | |
tree | 0fc551e92e791cf00dd1edb0a5b24c0c43dfc535 /drivers | |
parent | 049711bf3cc59501ebeae621aa22acd3918ebd79 (diff) | |
parent | a53dae49b2fea43d8f4ec5aeca0e288bbc8d6895 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
Pull IDE cleanup from David Miller:
"Just one minor cleanup"
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide:
ide: use module_platform_driver()
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 13 | ||||
-rw-r--r-- | drivers/ide/ide_platform.c | 13 |
2 files changed, 2 insertions, 24 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index 259786ca8b7..07ea5808406 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c @@ -592,18 +592,7 @@ static struct platform_driver au1200_ide_driver = { .remove = au_ide_remove, }; -static int __init au_ide_init(void) -{ - return platform_driver_register(&au1200_ide_driver); -} - -static void __exit au_ide_exit(void) -{ - platform_driver_unregister(&au1200_ide_driver); -} +module_platform_driver(au1200_ide_driver); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("AU1200 IDE driver"); - -module_init(au_ide_init); -module_exit(au_ide_exit); diff --git a/drivers/ide/ide_platform.c b/drivers/ide/ide_platform.c index a8b4b6af80e..d48de6de503 100644 --- a/drivers/ide/ide_platform.c +++ b/drivers/ide/ide_platform.c @@ -131,19 +131,8 @@ static struct platform_driver platform_ide_driver = { .remove = plat_ide_remove, }; -static int __init platform_ide_init(void) -{ - return platform_driver_register(&platform_ide_driver); -} - -static void __exit platform_ide_exit(void) -{ - platform_driver_unregister(&platform_ide_driver); -} +module_platform_driver(platform_ide_driver); MODULE_DESCRIPTION("Platform IDE driver"); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:pata_platform"); - -module_init(platform_ide_init); -module_exit(platform_ide_exit); |