mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
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: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fcfbfd68b3
commit
a084ab3354
1 changed files with 1 additions and 13 deletions
|
|
@ -1032,19 +1032,7 @@ static struct mdio_driver qca8kmdio_driver = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init
|
mdio_module_driver(qca8kmdio_driver);
|
||||||
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);
|
|
||||||
|
|
||||||
MODULE_AUTHOR("Mathieu Olivari, John Crispin <john@phrozen.org>");
|
MODULE_AUTHOR("Mathieu Olivari, John Crispin <john@phrozen.org>");
|
||||||
MODULE_DESCRIPTION("Driver for QCA8K ethernet switch family");
|
MODULE_DESCRIPTION("Driver for QCA8K ethernet switch family");
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue