diff options
author | Patrice Chotard | 2022-08-24 15:42:37 +0200 |
---|---|---|
committer | Patrick Delaunay | 2022-09-06 14:09:05 +0200 |
commit | 5468dc82cb5b4e9dbb3d2b988810ff0b4b1781f6 (patch) | |
tree | 9283bb2ad52174b57c0b39cd1adada7836ee8b8a | |
parent | 06328d1411cf1167133aff0bd56472a8f67724e0 (diff) |
ARM: dts: stm32: Fix display-timings settings for stm32f746-disco
Since commit ef4ce6df3289 "video: stm32: stm32_ltdc: fix data enable polarity"
The panel display output wasn't functional anymore.
Device tree display-timings de-active property value must be updated
to 1.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
-rw-r--r-- | arch/arm/dts/stm32f746-disco-u-boot.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/stm32f746-disco-u-boot.dtsi b/arch/arm/dts/stm32f746-disco-u-boot.dtsi index f88466fa60e..a4ce936d7d0 100644 --- a/arch/arm/dts/stm32f746-disco-u-boot.dtsi +++ b/arch/arm/dts/stm32f746-disco-u-boot.dtsi @@ -58,7 +58,7 @@ vsync-len = <10>; hsync-active = <0>; vsync-active = <0>; - de-active = <0>; + de-active = <1>; pixelclk-active = <1>; }; }; |