diff options
author | Tim Harvey | 2021-07-24 10:40:36 -0700 |
---|---|---|
committer | Stefano Babic | 2021-08-09 14:46:50 +0200 |
commit | dd79c97b920fdaceb5bc3f8ad0b5092b5a43e0bf (patch) | |
tree | 19d231fef9f6399a367befdf3bf32cbb18a32f32 /arch/arm/dts/imx6qdl-gw53xx.dtsi | |
parent | 034105a8f79de735d99f1bc02a0721ddda78ebe4 (diff) |
imx: ventana: fix UMS support
The Gateworks Ventana boards have always had usb0=usbh1 and usb1=usbotg
because OTG is often subloaded on these boards and a bit in the EEPROM
which flagging that OTG is subloaded is used to remove the dt node via the
alias.
U-Boot DM_USB UMS requires the usb0 alias be assigned to the usbotg
so fix the usb0 alias in order for UMS to work.
Fixes 72c46327f03f: ("imx: ventana: enable dm support for USB")
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'arch/arm/dts/imx6qdl-gw53xx.dtsi')
-rw-r--r-- | arch/arm/dts/imx6qdl-gw53xx.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/imx6qdl-gw53xx.dtsi b/arch/arm/dts/imx6qdl-gw53xx.dtsi index 172a45ba178..904b2283063 100644 --- a/arch/arm/dts/imx6qdl-gw53xx.dtsi +++ b/arch/arm/dts/imx6qdl-gw53xx.dtsi @@ -16,8 +16,8 @@ mmc0 = &usdhc3; nand = &gpmi; ssi0 = &ssi1; - usb0 = &usbh1; - usb1 = &usbotg; + usb0 = &usbotg; + usb1 = &usbh1; }; chosen { |