mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02: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:
committed by
Marek Vasut
parent
4b3928a08f
commit
2080d023d9
@@ -91,12 +91,13 @@ static int ohci_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;
|
||||
}
|
||||
}
|
||||
|
||||
err = ohci_register(dev, regs);
|
||||
|
Reference in New Issue
Block a user