mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-05 14:01:32 +00:00
usb: host: ohci-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
4b3928a08f
commit
2080d023d9
1 changed files with 6 additions and 5 deletions
|
@ -91,13 +91,14 @@ static int ohci_usb_probe(struct udevice *dev)
|
||||||
error("failed to get usb phy\n");
|
error("failed to get usb phy\n");
|
||||||
goto reset_err;
|
goto reset_err;
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
|
|
||||||
err = generic_phy_init(&priv->phy);
|
err = generic_phy_init(&priv->phy);
|
||||||
if (err) {
|
if (err) {
|
||||||
error("failed to init usb phy\n");
|
error("failed to init usb phy\n");
|
||||||
goto reset_err;
|
goto reset_err;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
err = ohci_register(dev, regs);
|
err = ohci_register(dev, regs);
|
||||||
if (err)
|
if (err)
|
||||||
|
|
Loading…
Add table
Reference in a new issue