Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e827c122 authored by Sachin Kamat's avatar Sachin Kamat Committed by David S. Miller
Browse files

net: ep93xx_eth: Use module_platform_driver()



module_platform_driver macro removes some boilerplate and makes
the code simpler.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a8f9c3e4
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -887,18 +887,7 @@ static struct platform_driver ep93xx_eth_driver = {
	},
};

static int __init ep93xx_eth_init_module(void)
{
	printk(KERN_INFO DRV_MODULE_NAME " version " DRV_MODULE_VERSION " loading\n");
	return platform_driver_register(&ep93xx_eth_driver);
}

static void __exit ep93xx_eth_cleanup_module(void)
{
	platform_driver_unregister(&ep93xx_eth_driver);
}
module_platform_driver(ep93xx_eth_driver);

module_init(ep93xx_eth_init_module);
module_exit(ep93xx_eth_cleanup_module);
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:ep93xx-eth");