mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
usb: host: ehci-generic: initialize PHY only when found
Call generic_phy_init() only when a PHY was found. This will avoid a crash if no "phys" property is found in DT. Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Reported-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
623b7aca1f
commit
4b3928a08f
1 changed files with 6 additions and 5 deletions
|
@ -99,12 +99,13 @@ static int ehci_usb_probe(struct udevice *dev)
|
|||
error("failed to get usb phy\n");
|
||||
goto reset_err;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
err = generic_phy_init(&priv->phy);
|
||||
if (err) {
|
||||
error("failed to init usb phy\n");
|
||||
goto reset_err;
|
||||
err = generic_phy_init(&priv->phy);
|
||||
if (err) {
|
||||
error("failed to init usb phy\n");
|
||||
goto reset_err;
|
||||
}
|
||||
}
|
||||
|
||||
hccr = map_physmem(devfdt_get_addr(dev), 0x100, MAP_NOCACHE);
|
||||
|
|
Loading…
Reference in a new issue