aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_rb532_cf.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata/pata_rb532_cf.c')
-rw-r--r--drivers/ata/pata_rb532_cf.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/drivers/ata/pata_rb532_cf.c b/drivers/ata/pata_rb532_cf.c
index 1b9d10d9c5d9..9417101bd5ca 100644
--- a/drivers/ata/pata_rb532_cf.c
+++ b/drivers/ata/pata_rb532_cf.c
@@ -188,9 +188,6 @@ static __devexit int rb532_pata_driver_remove(struct platform_device *pdev)
188 return 0; 188 return 0;
189} 189}
190 190
191/* work with hotplug and coldplug */
192MODULE_ALIAS("platform:" DRV_NAME);
193
194static struct platform_driver rb532_pata_platform_driver = { 191static struct platform_driver rb532_pata_platform_driver = {
195 .probe = rb532_pata_driver_probe, 192 .probe = rb532_pata_driver_probe,
196 .remove = __devexit_p(rb532_pata_driver_remove), 193 .remove = __devexit_p(rb532_pata_driver_remove),
@@ -200,27 +197,13 @@ static struct platform_driver rb532_pata_platform_driver = {
200 }, 197 },
201}; 198};
202 199
203/* ------------------------------------------------------------------------ */
204
205#define DRV_INFO DRV_DESC " version " DRV_VERSION 200#define DRV_INFO DRV_DESC " version " DRV_VERSION
206 201
207static int __init rb532_pata_module_init(void) 202module_platform_driver(rb532_pata_platform_driver);
208{
209 printk(KERN_INFO DRV_INFO "\n");
210
211 return platform_driver_register(&rb532_pata_platform_driver);
212}
213
214static void __exit rb532_pata_module_exit(void)
215{
216 platform_driver_unregister(&rb532_pata_platform_driver);
217}
218 203
219MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>"); 204MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>");
220MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>"); 205MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
221MODULE_DESCRIPTION(DRV_DESC); 206MODULE_DESCRIPTION(DRV_DESC);
222MODULE_VERSION(DRV_VERSION); 207MODULE_VERSION(DRV_VERSION);
223MODULE_LICENSE("GPL"); 208MODULE_LICENSE("GPL");
224 209MODULE_ALIAS("platform:" DRV_NAME);
225module_init(rb532_pata_module_init);
226module_exit(rb532_pata_module_exit);