Skip to content

Commit

Permalink
net: phy: aquantia/teranetics: Convert to use module_phy_driver macro
Browse files Browse the repository at this point in the history
Use module_phy_driver macro to simplify the code a bit.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Axel Lin authored and David S. Miller committed Oct 15, 2015
1 parent 7f0abb1 commit fb0801d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 28 deletions.
15 changes: 1 addition & 14 deletions drivers/net/phy/aquantia.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,20 +171,7 @@ static struct phy_driver aquantia_driver[] = {
},
};

static int __init aquantia_init(void)
{
return phy_drivers_register(aquantia_driver,
ARRAY_SIZE(aquantia_driver));
}

static void __exit aquantia_exit(void)
{
return phy_drivers_unregister(aquantia_driver,
ARRAY_SIZE(aquantia_driver));
}

module_init(aquantia_init);
module_exit(aquantia_exit);
module_phy_driver(aquantia_driver);

static struct mdio_device_id __maybe_unused aquantia_tbl[] = {
{ PHY_ID_AQ1202, 0xfffffff0 },
Expand Down
15 changes: 1 addition & 14 deletions drivers/net/phy/teranetics.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,7 @@ static struct phy_driver teranetics_driver[] = {
},
};

static int __init teranetics_init(void)
{
return phy_drivers_register(teranetics_driver,
ARRAY_SIZE(teranetics_driver));
}

static void __exit teranetics_exit(void)
{
return phy_drivers_unregister(teranetics_driver,
ARRAY_SIZE(teranetics_driver));
}

module_init(teranetics_init);
module_exit(teranetics_exit);
module_phy_driver(teranetics_driver);

static struct mdio_device_id __maybe_unused teranetics_tbl[] = {
{ PHY_ID_TN2020, 0xffffffff },
Expand Down

0 comments on commit fb0801d

Please sign in to comment.