diff options
author | Johan Hovold <johan@kernel.org> | 2014-11-11 13:45:59 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-12 13:52:53 -0500 |
commit | 50fd71507e69eb96d15fa0544f23495838ae2dab (patch) | |
tree | f51f31917782679af7e9dbbd445155130323469b /drivers/net/phy/ste10Xp.c | |
parent | 116dffa0b543a2e560abd62a0b3207b1694f9ab9 (diff) |
net: phy: replace phy_drivers_register calls
Replace module init/exit which only calls phy_drivers_register with
module_phy_driver macro.
Tested using Micrel driver, and otherwise compile-tested only.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/ste10Xp.c')
-rw-r--r-- | drivers/net/phy/ste10Xp.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/net/phy/ste10Xp.c b/drivers/net/phy/ste10Xp.c index 5e1eb138916f..3fc199b773e6 100644 --- a/drivers/net/phy/ste10Xp.c +++ b/drivers/net/phy/ste10Xp.c | |||
@@ -112,20 +112,7 @@ static struct phy_driver ste10xp_pdriver[] = { | |||
112 | .driver = {.owner = THIS_MODULE,} | 112 | .driver = {.owner = THIS_MODULE,} |
113 | } }; | 113 | } }; |
114 | 114 | ||
115 | static int __init ste10Xp_init(void) | 115 | module_phy_driver(ste10xp_pdriver); |
116 | { | ||
117 | return phy_drivers_register(ste10xp_pdriver, | ||
118 | ARRAY_SIZE(ste10xp_pdriver)); | ||
119 | } | ||
120 | |||
121 | static void __exit ste10Xp_exit(void) | ||
122 | { | ||
123 | phy_drivers_unregister(ste10xp_pdriver, | ||
124 | ARRAY_SIZE(ste10xp_pdriver)); | ||
125 | } | ||
126 | |||
127 | module_init(ste10Xp_init); | ||
128 | module_exit(ste10Xp_exit); | ||
129 | 116 | ||
130 | static struct mdio_device_id __maybe_unused ste10Xp_tbl[] = { | 117 | static struct mdio_device_id __maybe_unused ste10Xp_tbl[] = { |
131 | { STE101P_PHY_ID, 0xfffffff0 }, | 118 | { STE101P_PHY_ID, 0xfffffff0 }, |