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

Commit ecad0a68 authored by Jingoo Han's avatar Jingoo Han Committed by David S. Miller
Browse files

net: at91_ether: use module_platform_driver_probe()



This patch uses module_platform_driver_probe() macro which makes
the code smaller and simpler.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9f225788
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -519,18 +519,7 @@ static struct platform_driver at91ether_driver = {
	},
};

static int __init at91ether_init(void)
{
	return platform_driver_probe(&at91ether_driver, at91ether_probe);
}

static void __exit at91ether_exit(void)
{
	platform_driver_unregister(&at91ether_driver);
}

module_init(at91ether_init)
module_exit(at91ether_exit)
module_platform_driver_probe(at91ether_driver, at91ether_probe);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("AT91RM9200 EMAC Ethernet driver");