diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-02-09 11:14:46 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2021-02-10 22:23:35 +0100 |
commit | db8fb2ffc4f3f63b9005f676ab3879a06de6cdda (patch) | |
tree | 914461025f7b6f5373d97d342735464c903c1624 /arch | |
parent | cec804251d4b4765bbcaa207f4c931fef350585e (diff) | |
download | u-boot-db8fb2ffc4f3f63b9005f676ab3879a06de6cdda.tar.gz u-boot-db8fb2ffc4f3f63b9005f676ab3879a06de6cdda.tar.xz u-boot-db8fb2ffc4f3f63b9005f676ab3879a06de6cdda.zip |
usb: dwc2: change compatible st,stm32mp1-hsotg to st,stm32mp15-hsotg
The Linux kernel v5.7-rc1 introduced the compatible "st,stm32mp15-hsotg".
See Linux kernel commit d49850110434 ("dt-bindings: usb: dwc2: add
support for STM32MP15 SoCs USB OTG HS and FS")
This patch updates the supported compatible in DWC2 driver,
removes the add-on done in U-Boot dtsi and keeps the compatible
defined in SOC dtsi arch/arm/dts/stm32mp151.dtsi:
usbotg_hs: usb-otg@49000000 {
compatible = "st,stm32mp15-hsotg", "snps,dwc2";
reg = <0x49000000 0x10000>;
...
};
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/stm32mp15-u-boot.dtsi | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/dts/stm32mp15-u-boot.dtsi b/arch/arm/dts/stm32mp15-u-boot.dtsi index d0aa5eabe5..43a7909978 100644 --- a/arch/arm/dts/stm32mp15-u-boot.dtsi +++ b/arch/arm/dts/stm32mp15-u-boot.dtsi @@ -228,6 +228,3 @@ resets = <&rcc UART8_R>; }; -&usbotg_hs { - compatible = "st,stm32mp1-hsotg", "snps,dwc2"; -}; |