diff options
author | Grzegorz Szymaszek <[email protected]> | 2021-06-03 17:40:48 +0200 |
---|---|---|
committer | Alexandre Torgue <[email protected]> | 2021-06-10 15:36:42 +0200 |
commit | f493162319788802b6a49634f7268e691b4c10ec (patch) | |
tree | d279ade2b99d6b5404efb51c9df5b5662262213f | |
parent | 02814a41529a55dbfb9fbb2a3728e78e70646ea6 (diff) |
ARM: dts: stm32: fix the Odyssey SoM eMMC VQMMC supply
The Seeed SoM-STM32MP157C device tree had the eMMC’s (SDMMC2) VQMMC
supply set to v3v3 (buck4), the same as the VMMC supply. That was
incorrect, as on the SoM, the VQMMC supply is provided from vdd (buck3)
instead.
Signed-off-by: Grzegorz Szymaszek <[email protected]>
Signed-off-by: Alexandre Torgue <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi b/arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi index 6cf49a0a9e69..b5601d270c8f 100644 --- a/arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi +++ b/arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi @@ -269,7 +269,7 @@ st,neg-edge; bus-width = <8>; vmmc-supply = <&v3v3>; - vqmmc-supply = <&v3v3>; + vqmmc-supply = <&vdd>; mmc-ddr-3_3v; status = "okay"; }; |