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

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

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
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -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");