mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
538a1d740c
The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 50a6e5cf28a24e7f4192ad6f70f472eca2097cc6 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Wed, 2 Oct 2024 16:36:45 +0100
|
|
Subject: [PATCH 1296/1350] dtoverlays: Correct vc4-kms-dpi-generic for
|
|
[width|height]-mm
|
|
|
|
These two overrides were updating the &panel node from
|
|
vc4-kms-dpi.dtsi, when fragment0 from the vc4-kms-dpi-generic
|
|
was also updating the same node. Application order meant that
|
|
the override value was overwritten.
|
|
|
|
Correct the target.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
arch/arm/boot/dts/overlays/vc4-kms-dpi-generic-overlay.dts | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/vc4-kms-dpi-generic-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/vc4-kms-dpi-generic-overlay.dts
|
|
@@ -60,8 +60,8 @@
|
|
de-invert = <&timing>, "de-active:0=0";
|
|
pixclk-invert = <&timing>, "pixelclk-active:0=0";
|
|
|
|
- width-mm = <&panel>, "width-mm:0";
|
|
- height-mm = <&panel>, "height-mm:0";
|
|
+ width-mm = <&panel_generic>, "width-mm:0";
|
|
+ height-mm = <&panel_generic>, "height-mm:0";
|
|
|
|
rgb565 = <&panel_generic>, "bus-format:0=0x1017",
|
|
<&dpi_node_generic>, "pinctrl-0:0=",<&dpi_16bit_gpio0>;
|