diff options
author | David Daney <david.daney@cavium.com> | 2012-05-15 10:46:52 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-16 00:59:12 -0400 |
commit | 82251de2a2b7b84987dde104d48a765b63170149 (patch) | |
tree | 904a0301adabc84939483373f9bbc496c4209417 /include/linux/phy.h | |
parent | eb71d0d63fdd04b1f63243917a6fad7427827ee7 (diff) | |
download | op-kernel-dev-82251de2a2b7b84987dde104d48a765b63170149.zip op-kernel-dev-82251de2a2b7b84987dde104d48a765b63170149.tar.gz |
netdev/phy: Make get_phy_id() static and quit EXPORTing it.
This function is only referenced from within phy_device.c, so there is
no reason to export it. In fact, we can make it static.
Signed-off-by: David Daney <david.daney@cavium.com>
Acked-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r-- | include/linux/phy.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index f092032..c291cae 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -480,7 +480,6 @@ static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val) return mdiobus_write(phydev->bus, phydev->addr, regnum, val); } -int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id); struct phy_device* get_phy_device(struct mii_bus *bus, int addr); int phy_device_register(struct phy_device *phy); int phy_init_hw(struct phy_device *phydev); |