Drop the unit-address from the endpoint nodes of the tpd12s015 encoder on the am5729-beagleboneai and the am57xx-idk.
The nodes carry a unit-address without a matching reg property, which the device tree specification does not allow. A plain endpoint name makes them match the schema for this binding. No functional change. Signed-off-by: Quchaosheng <[email protected]> --- arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts | 4 ++-- arch/arm/boot/dts/ti/omap/am57xx-idk-common.dtsi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts b/arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts index 76bfb3647..f40017a0e 100644 --- a/arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts +++ b/arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts @@ -168,7 +168,7 @@ ports { port@0 { reg = <0x0>; - hdmi_encoder_in: endpoint@0 { + hdmi_encoder_in: endpoint { remote-endpoint = <&hdmi_out>; }; }; @@ -176,7 +176,7 @@ hdmi_encoder_in: endpoint@0 { port@1 { reg = <0x1>; - hdmi_encoder_out: endpoint@0 { + hdmi_encoder_out: endpoint { remote-endpoint = <&hdmi_connector_in>; }; }; diff --git a/arch/arm/boot/dts/ti/omap/am57xx-idk-common.dtsi b/arch/arm/boot/dts/ti/omap/am57xx-idk-common.dtsi index 5eccff3bb..4e8a5820b 100644 --- a/arch/arm/boot/dts/ti/omap/am57xx-idk-common.dtsi +++ b/arch/arm/boot/dts/ti/omap/am57xx-idk-common.dtsi @@ -135,7 +135,7 @@ ports { port@0 { reg = <0>; - tpd12s015_in: endpoint@0 { + tpd12s015_in: endpoint { remote-endpoint = <&hdmi_out>; }; }; @@ -143,7 +143,7 @@ tpd12s015_in: endpoint@0 { port@1 { reg = <1>; - tpd12s015_out: endpoint@0 { + tpd12s015_out: endpoint { remote-endpoint = <&hdmi_connector_in>; }; };
