summaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/amd.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@kernel.org>2014-11-11 19:45:58 +0100
committerDavid S. Miller <davem@davemloft.net>2014-11-12 13:52:53 -0500
commit116dffa0b543a2e560abd62a0b3207b1694f9ab9 (patch)
treebf26c3d107938367692f724596da9067cea09aa0 /drivers/net/phy/amd.c
parentc31accd159a6477b91de61ae237dce38e3f3ee4d (diff)
downloadop-kernel-dev-116dffa0b543a2e560abd62a0b3207b1694f9ab9.zip
op-kernel-dev-116dffa0b543a2e560abd62a0b3207b1694f9ab9.tar.gz
net: phy: replace phy_driver_register calls
Replace module init/exit which only calls phy_driver_register with module_phy_driver macro. 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/amd.c')
-rw-r--r--drivers/net/phy/amd.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/drivers/net/phy/amd.c b/drivers/net/phy/amd.c
index a3fb5ce..65a488f 100644
--- a/drivers/net/phy/amd.c
+++ b/drivers/net/phy/amd.c
@@ -61,7 +61,7 @@ static int am79c_config_intr(struct phy_device *phydev)
return err;
}
-static struct phy_driver am79c_driver = {
+static struct phy_driver am79c_driver[] = { {
.phy_id = PHY_ID_AM79C874,
.name = "AM79C874",
.phy_id_mask = 0xfffffff0,
@@ -73,20 +73,9 @@ static struct phy_driver am79c_driver = {
.ack_interrupt = am79c_ack_interrupt,
.config_intr = am79c_config_intr,
.driver = { .owner = THIS_MODULE,},
-};
-
-static int __init am79c_init(void)
-{
- return phy_driver_register(&am79c_driver);
-}
-
-static void __exit am79c_exit(void)
-{
- phy_driver_unregister(&am79c_driver);
-}
+} };
-module_init(am79c_init);
-module_exit(am79c_exit);
+module_phy_driver(am79c_driver);
static struct mdio_device_id __maybe_unused amd_tbl[] = {
{ PHY_ID_AM79C874, 0xfffffff0 },
OpenPOWER on IntegriCloud