Make the call to of_mdiobus_register() dependant on CONFIG_OF to avoid
pulling in an unwanted dependency on of_mdio.ko.
Fixes: 3dc523f232 kernel: add OF support to rtl8355 driver
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
static int rtl8366_smi_mii_init(struct rtl8366_smi *smi)
{
int ret;
- struct device_node *np = NULL;
#ifdef CONFIG_OF
+ struct device_node *np = NULL;
+
np = of_get_child_by_name(smi->parent->of_node, "mdio-bus");
#endif
}
#endif
+#ifdef CONFIG_OF
if (np)
ret = of_mdiobus_register(smi->mii_bus, np);
else
+#endif
ret = mdiobus_register(smi->mii_bus);
+
if (ret)
goto err_free;