mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
net: mdio-uclass: scan for dm mdio children on post-bind
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> Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Reviewed-by: Fabio Estevam <festevam@denx.de>
This commit is contained in:
parent
9918b25d21
commit
f54002d774
1 changed files with 4 additions and 0 deletions
|
@ -49,7 +49,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
|
||||
}
|
||||
|
||||
int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg)
|
||||
|
|
Loading…
Reference in a new issue