mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
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: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8e2bb95699
commit
679e283ec7
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user