arm64: dts: imx8mm/n-beacon-kit: Fix the order of ADV7535 reg entries
According to adi,adv7533.yaml, the order for the reg and reg-names entries must be: main, edid, cec, and packet. Fix it accordingly to remove the following dt-schema warnings: hdmi@3d: reg-names:1: 'edid' was expected hdmi@3d: reg-names:2: 'cec' was expected Signed-off-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Adam Ford <aford173@gmail.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
@@ -62,8 +62,8 @@
|
||||
compatible = "adi,adv7535";
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_hdmi_bridge>;
|
||||
reg = <0x3d>, <0x3c>, <0x3e>, <0x3f>;
|
||||
reg-names = "main", "cec", "edid", "packet";
|
||||
reg = <0x3d>, <0x3e>, <0x3c>, <0x3f>;
|
||||
reg-names = "main", "edid", "cec", "packet";
|
||||
adi,dsi-lanes = <4>;
|
||||
avdd-supply = <®_hdmi>;
|
||||
a2vdd-supply = <®_hdmi>;
|
||||
|
||||
@@ -62,8 +62,8 @@
|
||||
compatible = "adi,adv7535";
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_hdmi_bridge>;
|
||||
reg = <0x3d>, <0x3c>, <0x3e>, <0x3f>;
|
||||
reg-names = "main", "cec", "edid", "packet";
|
||||
reg = <0x3d>, <0x3e>, <0x3c>, <0x3f>;
|
||||
reg-names = "main", "edid", "cec", "packet";
|
||||
adi,dsi-lanes = <4>;
|
||||
avdd-supply = <®_hdmi>;
|
||||
a2vdd-supply = <®_hdmi>;
|
||||
|
||||
Reference in New Issue
Block a user