Commit b4a46676 authored by Tobias Klauser's avatar Tobias Klauser Committed by David S. Miller

net: ethernet: xilinx: Convert xilinx_axienet to module_platform_driver

Follow commit db62f684. Convert the driver to use the
module_platform_driver() macro which makes the code a bit smaller and
simpler.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 95f2054f
......@@ -1662,18 +1662,7 @@ static struct platform_driver axienet_of_driver = {
},
};
static int __init axienet_init(void)
{
return platform_driver_register(&axienet_of_driver);
}
static void __exit axienet_exit(void)
{
platform_driver_unregister(&axienet_of_driver);
}
module_init(axienet_init);
module_exit(axienet_exit);
module_platform_driver(axienet_of_driver);
MODULE_DESCRIPTION("Xilinx Axi Ethernet driver");
MODULE_AUTHOR("Xilinx");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment