mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-30 13:38:40 +00:00
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: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
95f2054f16
commit
b4a466765d
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user