Browse Source

kernel: rtl8366_smi: guard of_mdiobus_register() call

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 <[email protected]>
Jo-Philipp Wich 7 years ago
parent
commit
d8c7cd9cb1
1 changed files with 5 additions and 1 deletions
  1. 5 1
      target/linux/generic/files/drivers/net/phy/rtl8366_smi.c

+ 5 - 1
target/linux/generic/files/drivers/net/phy/rtl8366_smi.c

@@ -916,9 +916,10 @@ static inline void rtl8366_debugfs_remove(struct rtl8366_smi *smi) {}
 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
 
@@ -945,10 +946,13 @@ static int rtl8366_smi_mii_init(struct rtl8366_smi *smi)
 	}
 #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;