@@ -33,15 +33,6 @@ static int of_get_phy_id(struct device_node *device, u32 *phy_id)
return fwnode_get_phy_id(of_fwnode_handle(device), phy_id);
}
-int of_mdiobus_phy_device_register(struct mii_bus *mdio, struct phy_device *phy,
- struct device_node *child, u32 addr)
-{
- return fwnode_mdiobus_phy_device_register(mdio, phy,
- of_fwnode_handle(child),
- addr);
-}
-EXPORT_SYMBOL(of_mdiobus_phy_device_register);
-
static int of_mdiobus_register_phy(struct mii_bus *mdio,
struct device_node *child, u32 addr)
{
@@ -47,8 +47,6 @@ struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
int of_phy_register_fixed_link(struct device_node *np);
void of_phy_deregister_fixed_link(struct device_node *np);
bool of_phy_is_fixed_link(struct device_node *np);
-int of_mdiobus_phy_device_register(struct mii_bus *mdio, struct phy_device *phy,
- struct device_node *child, u32 addr);
static inline int of_mdio_parse_addr(struct device *dev,
const struct device_node *np)
@@ -142,12 +140,6 @@ static inline bool of_phy_is_fixed_link(struct device_node *np)
return false;
}
-static inline int of_mdiobus_phy_device_register(struct mii_bus *mdio,
- struct phy_device *phy,
- struct device_node *child, u32 addr)
-{
- return -ENOSYS;
-}
#endif
There are no references to of_mdiobus_phy_device_register() anymore so we can remove the code. Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> --- drivers/net/mdio/of_mdio.c | 9 --------- include/linux/of_mdio.h | 8 -------- 2 files changed, 17 deletions(-)