aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ide/au1xxx-ide.c13
-rw-r--r--drivers/ide/ide_platform.c13
2 files changed, 2 insertions, 24 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c
index 259786ca8b75..07ea58084068 100644
--- a/drivers/ide/au1xxx-ide.c
+++ b/drivers/ide/au1xxx-ide.c
@@ -592,18 +592,7 @@ static struct platform_driver au1200_ide_driver = {
592 .remove = au_ide_remove, 592 .remove = au_ide_remove,
593}; 593};
594 594
595static int __init au_ide_init(void) 595module_platform_driver(au1200_ide_driver);
596{
597 return platform_driver_register(&au1200_ide_driver);
598}
599
600static void __exit au_ide_exit(void)
601{
602 platform_driver_unregister(&au1200_ide_driver);
603}
604 596
605MODULE_LICENSE("GPL"); 597MODULE_LICENSE("GPL");
606MODULE_DESCRIPTION("AU1200 IDE driver"); 598MODULE_DESCRIPTION("AU1200 IDE driver");
607
608module_init(au_ide_init);
609module_exit(au_ide_exit);
diff --git a/drivers/ide/ide_platform.c b/drivers/ide/ide_platform.c
index a8b4b6af80e7..d48de6de503e 100644
--- a/drivers/ide/ide_platform.c
+++ b/drivers/ide/ide_platform.c
@@ -131,19 +131,8 @@ static struct platform_driver platform_ide_driver = {
131 .remove = plat_ide_remove, 131 .remove = plat_ide_remove,
132}; 132};
133 133
134static int __init platform_ide_init(void) 134module_platform_driver(platform_ide_driver);
135{
136 return platform_driver_register(&platform_ide_driver);
137}
138
139static void __exit platform_ide_exit(void)
140{
141 platform_driver_unregister(&platform_ide_driver);
142}
143 135
144MODULE_DESCRIPTION("Platform IDE driver"); 136MODULE_DESCRIPTION("Platform IDE driver");
145MODULE_LICENSE("GPL"); 137MODULE_LICENSE("GPL");
146MODULE_ALIAS("platform:pata_platform"); 138MODULE_ALIAS("platform:pata_platform");
147
148module_init(platform_ide_init);
149module_exit(platform_ide_exit);