Commit a084ab33 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller

net: dsa: qca8k: use mdio_module_driver to simplify the code

mdio_module_driver() makes the code simpler by eliminating
boilerplate code.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fcfbfd68
......@@ -1032,19 +1032,7 @@ static struct mdio_driver qca8kmdio_driver = {
},
};
static int __init
qca8kmdio_driver_register(void)
{
return mdio_driver_register(&qca8kmdio_driver);
}
module_init(qca8kmdio_driver_register);
static void __exit
qca8kmdio_driver_unregister(void)
{
mdio_driver_unregister(&qca8kmdio_driver);
}
module_exit(qca8kmdio_driver_unregister);
mdio_module_driver(qca8kmdio_driver);
MODULE_AUTHOR("Mathieu Olivari, John Crispin <john@phrozen.org>");
MODULE_DESCRIPTION("Driver for QCA8K ethernet switch family");
......
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