From 5c5cee48d226b7da0275e1e69f01c641b02cd9b7 Mon Sep 17 00:00:00 2001 From: Oleksandr Suvorov Date: Wed, 29 Jul 2020 15:53:04 +0300 Subject: display: convert EDT7.0 to syntactic sugar Convert an overlay file for EDT7.0 display into the Syntactic Sugar format. This format is strongly recommended in Embedded Linux Wiki [1]. [1] https://elinux.org/Device_Tree_Reference#Overlay_Source_Format Related-to: ELB-2834 Signed-off-by: Oleksandr Suvorov --- overlays/display-edt7_overlay.dts | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/overlays/display-edt7_overlay.dts b/overlays/display-edt7_overlay.dts index a62cfea..735e530 100644 --- a/overlays/display-edt7_overlay.dts +++ b/overlays/display-edt7_overlay.dts @@ -5,23 +5,24 @@ / { compatible = "toradex,colibri-imx7d-emmc","toradex,apalis_imx6q", "toradex,colibri_imx6dl"; - fragment@0 { - target-path = "/panel-dpi"; - __overlay__ { - status = "okay"; - width-mm = <155>; - height-mm = <91>; - panel-timing { - clock-frequency = <33230769>; - hactive = <800>; - vactive = <480>; - hsync-len = <128>; - hfront-porch = <40>; - hback-porch = <88>; - vsync-len = <1>; - vfront-porch = <10>; - vback-porch = <33>; - }; - }; +}; + +&{/panel-dpi} { + status = "okay"; + + width-mm = <155>; + height-mm = <91>; + + panel-timing { + clock-frequency = <33230769>; + hactive = <800>; + vactive = <480>; + hsync-len = <128>; + hfront-porch = <40>; + hback-porch = <88>; + vsync-len = <1>; + vfront-porch = <10>; + vback-porch = <33>; }; }; + -- cgit v1.2.3