net: axienet: replace mdiobus_write() with mdiodev_write()
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Tue, 25 Jan 2022 16:10:16 +0000 (16:10 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 26 Jan 2022 15:48:19 +0000 (15:48 +0000)
Commit 0ebecb2644c8 ("net: mdio: Add helper functions for accessing
MDIO devices") added support for mdiodev accessor operations that
neatly wrap the mdiobus accessor operations. Since we are dealing with
a mdio device here, update the driver to use mdiodev_write().

Tested-by: Harini Katakam <harini.katakam@xilinx.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/xilinx/xilinx_axienet_main.c

index 1ebdf1c62db8d98d964714b59f0a8dd88c26ab96..de0a6372ae0e55b4025599131dece56f8ec7ae0c 100644 (file)
@@ -1568,8 +1568,7 @@ static int axienet_pcs_config(struct phylink_pcs *pcs, unsigned int mode,
        int ret;
 
        if (lp->switch_x_sgmii) {
-               ret = mdiobus_write(pcs_phy->bus, pcs_phy->addr,
-                                   XLNX_MII_STD_SELECT_REG,
+               ret = mdiodev_write(pcs_phy, XLNX_MII_STD_SELECT_REG,
                                    interface == PHY_INTERFACE_MODE_SGMII ?
                                        XLNX_MII_STD_SELECT_SGMII : 0);
                if (ret < 0) {