Re: [PATCH 3/4] net: lantiq: Add Lantiq / Intel vrx200 Ethernet driver
From: Andrew Lunn <andrew@lunn.ch>
Date: 2018-07-25 16:41:18
Also in:
linux-mips
From: Andrew Lunn <andrew@lunn.ch>
Date: 2018-07-25 16:41:18
Also in:
linux-mips
+ /* Make sure the firmware of the embedded GPHY is loaded before,
+ * otherwise they will not be detectable on the MDIO bus.
+ */
+ of_for_each_phandle(&it, err, np, "lantiq,phys", NULL, 0) {
+ phy_np = it.node;
+ if (phy_np) {
+ struct platform_device *phy = of_find_device_by_node(phy_np);
+
+ of_node_put(phy_np);
+ if (!platform_get_drvdata(phy))
+ return -EPROBE_DEFER;
+ }
+ }Is there a device tree binding document for this somewhere? Andrew