
1 Apr
2022
1 Apr
'22
9:40 p.m.
On Wed, Mar 30, 2022 at 1:52 AM Tim Harvey tharvey@gateworks.com wrote:
If a DM_MDIO driver is used we need to scan the subnodes as well.
Signed-off-by: Tim Harvey tharvey@gateworks.com Signed-off-by: Vladimir Oltean vladimir.oltean@nxp.com
net/mdio-uclass.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/net/mdio-uclass.c b/net/mdio-uclass.c index e74e34f78f9c..190cb08b31d8 100644 --- a/net/mdio-uclass.c +++ b/net/mdio-uclass.c @@ -59,7 +59,11 @@ static int dm_mdio_post_bind(struct udevice *dev) return -EINVAL; }
+#if CONFIG_IS_ENABLED(OF_REAL)
return dm_scan_fdt_dev(dev);
+#else return 0; +#endif }
/*
2.17.1
Reviewed-by: Ramon Fried rfried.dev@gmail.com