Commit 679e283e authored by Vladimir Oltean's avatar Vladimir Oltean Committed by David S. Miller
Browse files

net: pcs: xpcs: use mdiobus_c45_addr in xpcs_{read,write}



Use the dedicated helper for abstracting away how the clause 45 address
is packed in reg_addr.

Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8e2bb956
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -240,14 +240,14 @@ static bool __xpcs_linkmode_supported(const struct xpcs_compat *compat,

static int xpcs_read(struct mdio_xpcs_args *xpcs, int dev, u32 reg)
{
	u32 reg_addr = MII_ADDR_C45 | dev << 16 | reg;
	u32 reg_addr = mdiobus_c45_addr(dev, reg);

	return mdiobus_read(xpcs->bus, xpcs->addr, reg_addr);
}

static int xpcs_write(struct mdio_xpcs_args *xpcs, int dev, u32 reg, u16 val)
{
	u32 reg_addr = MII_ADDR_C45 | dev << 16 | reg;
	u32 reg_addr = mdiobus_c45_addr(dev, reg);

	return mdiobus_write(xpcs->bus, xpcs->addr, reg_addr, val);
}