diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-06 13:59:01 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-06 13:59:01 -0400 |
commit | 42378e3cd2432e0353cdcc1789039293e4b46252 (patch) | |
tree | 0d7f41a9e50432c32aca3cd7e611cfea70f9efc4 /drivers/phy | |
parent | 5dcf7cc590b348f1e730ec38242df64c179f10a8 (diff) | |
parent | 175e8322bcee64127a24acdac12c54f5ddb95f82 (diff) | |
download | u-boot-42378e3cd2432e0353cdcc1789039293e4b46252.tar.gz |
Merge tag 'dm-pull-6oct20' of git://git.denx.de/u-boot-dmWIP/06Oct2020
bloblist enhancement for alignment
Update ofnode/dev_read phandle function
sandbox keyboard enhancements and fixes
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/phy-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-uclass.c b/drivers/phy/phy-uclass.c index 8f456f33d2..f344e94b43 100644 --- a/drivers/phy/phy-uclass.c +++ b/drivers/phy/phy-uclass.c @@ -214,7 +214,7 @@ int generic_phy_get_bulk(struct udevice *dev, struct phy_bulk *bulk) if (!dev_read_prop(dev, "phys", NULL)) return 0; - count = dev_count_phandle_with_args(dev, "phys", "#phy-cells"); + count = dev_count_phandle_with_args(dev, "phys", "#phy-cells", 0); if (count < 1) return count; |