Commit 1a7e9959 authored by Johan Jonker's avatar Johan Jonker Committed by Heiko Stuebner

ARM: dts: rockchip: fix lvds-encoder ports subnode for rk3188-bqedison2qc

A test with the command below gives this error:

arch/arm/boot/dts/rk3188-bqedison2qc.dt.yaml: lvds-encoder:
'ports' is a required property

Fix error by adding a ports wrapper for port@0 and port@1
inside the 'lvds-encoder' node for rk3188-bqedison2qc.

make ARCH=arm dtbs_check
DT_SCHEMA_FILES=Documentation/devicetree/bindings/display/
bridge/lvds-codec.yaml
Signed-off-by: default avatarJohan Jonker <jbx6244@gmail.com>
Link: https://lore.kernel.org/r/20200316174647.5598-1-jbx6244@gmail.comSigned-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
parent 0c1cb8b0
...@@ -58,11 +58,14 @@ gpio-poweroff { ...@@ -58,11 +58,14 @@ gpio-poweroff {
lvds-encoder { lvds-encoder {
compatible = "ti,sn75lvds83", "lvds-encoder"; compatible = "ti,sn75lvds83", "lvds-encoder";
ports {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
port@0 { port@0 {
reg = <0>; reg = <0>;
lvds_in_vop0: endpoint { lvds_in_vop0: endpoint {
remote-endpoint = <&vop0_out_lvds>; remote-endpoint = <&vop0_out_lvds>;
}; };
...@@ -70,11 +73,13 @@ lvds_in_vop0: endpoint { ...@@ -70,11 +73,13 @@ lvds_in_vop0: endpoint {
port@1 { port@1 {
reg = <1>; reg = <1>;
lvds_out_panel: endpoint { lvds_out_panel: endpoint {
remote-endpoint = <&panel_in_lvds>; remote-endpoint = <&panel_in_lvds>;
}; };
}; };
}; };
};
panel { panel {
compatible = "innolux,ee101ia-01d", "panel-lvds"; compatible = "innolux,ee101ia-01d", "panel-lvds";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment