Commit bec90b6d authored by Vivien Didelot's avatar Vivien Didelot Committed by David S. Miller

net: dsa: mv88e6xxx: prefix PHY macros

Prefix the PHY_* macros with a Marvell specific MV88E6XXX_ prefix.
There is no functional changes.
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarVivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cd782656
...@@ -62,7 +62,7 @@ int mv88e6xxx_phy_write(struct mv88e6xxx_chip *chip, int phy, int reg, u16 val) ...@@ -62,7 +62,7 @@ int mv88e6xxx_phy_write(struct mv88e6xxx_chip *chip, int phy, int reg, u16 val)
static int mv88e6xxx_phy_page_get(struct mv88e6xxx_chip *chip, int phy, u8 page) static int mv88e6xxx_phy_page_get(struct mv88e6xxx_chip *chip, int phy, u8 page)
{ {
return mv88e6xxx_phy_write(chip, phy, PHY_PAGE, page); return mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
} }
static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy) static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy)
...@@ -72,7 +72,8 @@ static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy) ...@@ -72,7 +72,8 @@ static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy)
/* Restore PHY page Copper 0x0 for access via the registered /* Restore PHY page Copper 0x0 for access via the registered
* MDIO bus * MDIO bus
*/ */
err = mv88e6xxx_phy_write(chip, phy, PHY_PAGE, PHY_PAGE_COPPER); err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE,
MV88E6XXX_PHY_PAGE_COPPER);
if (unlikely(err)) { if (unlikely(err)) {
dev_err(chip->dev, dev_err(chip->dev,
"failed to restore PHY %d page Copper (%d)\n", "failed to restore PHY %d page Copper (%d)\n",
...@@ -86,7 +87,7 @@ int mv88e6xxx_phy_page_read(struct mv88e6xxx_chip *chip, int phy, ...@@ -86,7 +87,7 @@ int mv88e6xxx_phy_page_read(struct mv88e6xxx_chip *chip, int phy,
int err; int err;
/* There is no paging for registers 22 */ /* There is no paging for registers 22 */
if (reg == PHY_PAGE) if (reg == MV88E6XXX_PHY_PAGE)
return -EINVAL; return -EINVAL;
err = mv88e6xxx_phy_page_get(chip, phy, page); err = mv88e6xxx_phy_page_get(chip, phy, page);
...@@ -104,12 +105,12 @@ int mv88e6xxx_phy_page_write(struct mv88e6xxx_chip *chip, int phy, ...@@ -104,12 +105,12 @@ int mv88e6xxx_phy_page_write(struct mv88e6xxx_chip *chip, int phy,
int err; int err;
/* There is no paging for registers 22 */ /* There is no paging for registers 22 */
if (reg == PHY_PAGE) if (reg == MV88E6XXX_PHY_PAGE)
return -EINVAL; return -EINVAL;
err = mv88e6xxx_phy_page_get(chip, phy, page); err = mv88e6xxx_phy_page_get(chip, phy, page);
if (!err) { if (!err) {
err = mv88e6xxx_phy_write(chip, phy, PHY_PAGE, page); err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
mv88e6xxx_phy_page_put(chip, phy); mv88e6xxx_phy_page_put(chip, phy);
} }
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
#ifndef _MV88E6XXX_PHY_H #ifndef _MV88E6XXX_PHY_H
#define _MV88E6XXX_PHY_H #define _MV88E6XXX_PHY_H
#define PHY_PAGE 0x16 #define MV88E6XXX_PHY_PAGE 0x16
#define PHY_PAGE_COPPER 0x00 #define MV88E6XXX_PHY_PAGE_COPPER 0x00
/* PHY Registers accesses implementations */ /* PHY Registers accesses implementations */
int mv88e6165_phy_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus, int mv88e6165_phy_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
......
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