diff options
author | Grzegorz Szymaszek <gszymaszek@short.pl> | 2021-06-03 17:40:48 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-07-25 14:36:15 +0200 |
commit | a5bc2a2d838e81862f0f50f28e90288c322e9a22 (patch) | |
tree | 52a74588c2437612adf9f0abaae1923a930cd91e /arch | |
parent | e27052f21a2fd93868852d7982277b6c826d509e (diff) | |
download | linux-stable-a5bc2a2d838e81862f0f50f28e90288c322e9a22.tar.gz linux-stable-a5bc2a2d838e81862f0f50f28e90288c322e9a22.tar.bz2 linux-stable-a5bc2a2d838e81862f0f50f28e90288c322e9a22.zip |
ARM: dts: stm32: fix the Odyssey SoM eMMC VQMMC supply
[ Upstream commit f493162319788802b6a49634f7268e691b4c10ec ]
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 <gszymaszek@short.pl>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch')
-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"; }; |