diff options
author | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2019-08-07 14:23:00 +0200 |
---|---|---|
committer | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2019-08-27 10:32:44 +0200 |
commit | 4d40c0edd48938069c35fd5f4f1a3d24660357a7 (patch) | |
tree | 6e490ad3cc976e033adfb5d7b32abd3be03bdb71 /target | |
parent | e18724b907dc9d28f54ea875f934bbbb6d28eae9 (diff) | |
download | upstream-4d40c0edd48938069c35fd5f4f1a3d24660357a7.tar.gz upstream-4d40c0edd48938069c35fd5f4f1a3d24660357a7.tar.bz2 upstream-4d40c0edd48938069c35fd5f4f1a3d24660357a7.zip |
ar71xx: ag71xx: replace ag71xx_get_phy_if_mode_name with phy_modes()
Backport of f73b2d64ed56 ("ath79: ag71xx: replace ag71xx_get_phy_if_mode_name() with phy_modes()")
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c index 98c6b92c7d..21337a79c9 100644 --- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c +++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c @@ -1294,27 +1294,6 @@ static const struct net_device_ops ag71xx_netdev_ops = { #endif }; -static const char *ag71xx_get_phy_if_mode_name(phy_interface_t mode) -{ - switch (mode) { - case PHY_INTERFACE_MODE_MII: - return "MII"; - case PHY_INTERFACE_MODE_GMII: - return "GMII"; - case PHY_INTERFACE_MODE_RMII: - return "RMII"; - case PHY_INTERFACE_MODE_RGMII: - return "RGMII"; - case PHY_INTERFACE_MODE_SGMII: - return "SGMII"; - default: - break; - } - - return "unknown"; -} - - static int ag71xx_probe(struct platform_device *pdev) { struct net_device *dev; @@ -1440,7 +1419,7 @@ static int ag71xx_probe(struct platform_device *pdev) pr_info("%s: Atheros AG71xx at 0x%08lx, irq %d, mode:%s\n", dev->name, dev->base_addr, dev->irq, - ag71xx_get_phy_if_mode_name(pdata->phy_if_mode)); + phy_modes(pdata->phy_if_mode)); return 0; |