mirror of https://gitee.com/openkylin/linux.git
net: dsa: mv88e6xxx: prefix PHY macros
Prefix the PHY_* macros with a Marvell specific MV88E6XXX_ prefix. There is no functional changes. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cd782656da
commit
bec90b6d96
|
@ -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)
|
||||||
/* 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,
|
||||||
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,
|
||||||
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 @@
|
||||||
#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,
|
||||||
|
|
Loading…
Reference in New Issue