Commit 45d564bf authored by Michael Walle's avatar Michael Walle Committed by Jakub Kicinski

net: ngbe: Drop mdiobus_c45_regad()

With the new C45 MDIO access API, there is no encoding of the register
number anymore and thus the masking isn't necessary anymore. Remove it.
Signed-off-by: default avatarMichael Walle <michael@walle.cc>
Reviewed-by: default avatarRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent db1a63ae
...@@ -92,7 +92,7 @@ static int ngbe_phy_read_reg_mdi_c45(struct mii_bus *bus, int phy_addr, int devn ...@@ -92,7 +92,7 @@ static int ngbe_phy_read_reg_mdi_c45(struct mii_bus *bus, int phy_addr, int devn
wr32(wx, NGBE_MDIO_CLAUSE_SELECT, 0x0); wr32(wx, NGBE_MDIO_CLAUSE_SELECT, 0x0);
/* setup and write the address cycle command */ /* setup and write the address cycle command */
command = NGBE_MSCA_RA(mdiobus_c45_regad(regnum)) | command = NGBE_MSCA_RA(regnum) |
NGBE_MSCA_PA(phy_addr) | NGBE_MSCA_PA(phy_addr) |
NGBE_MSCA_DA(devnum); NGBE_MSCA_DA(devnum);
wr32(wx, NGBE_MSCA, command); wr32(wx, NGBE_MSCA, command);
...@@ -121,7 +121,7 @@ static int ngbe_phy_write_reg_mdi_c45(struct mii_bus *bus, int phy_addr, ...@@ -121,7 +121,7 @@ static int ngbe_phy_write_reg_mdi_c45(struct mii_bus *bus, int phy_addr,
wr32(wx, NGBE_MDIO_CLAUSE_SELECT, 0x0); wr32(wx, NGBE_MDIO_CLAUSE_SELECT, 0x0);
/* setup and write the address cycle command */ /* setup and write the address cycle command */
command = NGBE_MSCA_RA(mdiobus_c45_regad(regnum)) | command = NGBE_MSCA_RA(regnum) |
NGBE_MSCA_PA(phy_addr) | NGBE_MSCA_PA(phy_addr) |
NGBE_MSCA_DA(devnum); NGBE_MSCA_DA(devnum);
wr32(wx, NGBE_MSCA, command); wr32(wx, NGBE_MSCA, command);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment