net: dm9000: Use module_platform_driver()
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 18 Mar 2013 01:50:46 +0000 (01:50 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Mar 2013 17:02:36 +0000 (13:02 -0400)
module_platform_driver macro removes some boilerplate and makes
the code simpler.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/davicom/dm9000.c

index 8cdf025..f38f677 100644 (file)
@@ -1687,22 +1687,7 @@ static struct platform_driver dm9000_driver = {
        .remove  = dm9000_drv_remove,
 };
 
-static int __init
-dm9000_init(void)
-{
-       printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
-
-       return platform_driver_register(&dm9000_driver);
-}
-
-static void __exit
-dm9000_cleanup(void)
-{
-       platform_driver_unregister(&dm9000_driver);
-}
-
-module_init(dm9000_init);
-module_exit(dm9000_cleanup);
+module_platform_driver(dm9000_driver);
 
 MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
 MODULE_DESCRIPTION("Davicom DM9000 network driver");