9
0
Fork 0

net: phy: remove now unused of_phy_device_connect

Since barebox handles phys from devicetree transparently we no longer
need of_phy_device_connect.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-05-21 12:22:21 +02:00
parent 7240f56d36
commit 75635f6926
2 changed files with 0 additions and 45 deletions

View File

@ -376,37 +376,6 @@ out:
return ret;
}
#if defined(CONFIG_OFTREE)
int of_phy_device_connect(struct eth_device *edev, struct device_node *phy_np,
void (*adjust_link) (struct eth_device *edev),
u32 flags, phy_interface_t interface)
{
struct device_node *bus_np;
struct mii_bus *miibus;
int phy_addr = -ENODEV;
if (!phy_np)
return -EINVAL;
of_property_read_u32(phy_np, "reg", &phy_addr);
bus_np = of_get_parent(phy_np);
if (!bus_np)
return -ENODEV;
for_each_mii_bus(miibus) {
if (miibus->parent && miibus->parent->device_node == bus_np)
return phy_device_connect(edev, miibus, phy_addr,
adjust_link, flags, interface);
}
dev_err(&edev->dev, "unable to mdio bus for phy %s\n",
phy_np->full_name);
return -ENODEV;
}
#endif
/* Generic PHY support and helper functions */
/**

View File

@ -288,20 +288,6 @@ int phy_device_connect(struct eth_device *dev, struct mii_bus *bus, int addr,
void (*adjust_link) (struct eth_device *edev),
u32 flags, phy_interface_t interface);
#if defined(CONFIG_OFTREE)
int of_phy_device_connect(struct eth_device *edev, struct device_node *phy_np,
void (*adjust_link) (struct eth_device *edev),
u32 flags, phy_interface_t interface);
#else
static inline int of_phy_device_connect(struct eth_device *edev,
struct device_node *phy_np,
void (*adjust_link) (struct eth_device *edev),
u32 flags, phy_interface_t interface)
{
return -ENOSYS;
}
#endif
int phy_update_status(struct phy_device *phydev);
int phy_wait_aneg_done(struct phy_device *phydev);