2
0
forked from Ivasoft/openwrt

ar8216: prefix mii_xxx functions to avoid kernel namespace pollution

Prefix the exported mii_xxx32 functions with ar8xxx_
to avoid kernel namespace pollution.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>

SVN-Revision: 44105
This commit is contained in:
Felix Fietkau
2015-01-24 19:42:12 +00:00
parent 3a313a3e11
commit f7ece95303
3 changed files with 18 additions and 18 deletions

View File

@@ -439,9 +439,9 @@ struct ar8xxx_priv {
};
u32
mii_read32(struct ar8xxx_priv *priv, int phy_id, int regnum);
ar8xxx_mii_read32(struct ar8xxx_priv *priv, int phy_id, int regnum);
void
mii_write32(struct ar8xxx_priv *priv, int phy_id, int regnum, u32 val);
ar8xxx_mii_write32(struct ar8xxx_priv *priv, int phy_id, int regnum, u32 val);
u32
ar8xxx_read(struct ar8xxx_priv *priv, int reg);
void