devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: allwinner: restore hdmi_con_in node
@ 2019-12-10  9:28 Corentin Labbe
  2019-12-10  9:34 ` Chen-Yu Tsai
  2019-12-10  9:47 ` Maxime Ripard
  0 siblings, 2 replies; 3+ messages in thread
From: Corentin Labbe @ 2019-12-10  9:28 UTC (permalink / raw)
  To: mark.rutland, mripard, robh+dt, wens, georgii.staroselskii,
	aleksandr.aleksandrov
  Cc: devicetree, linux-arm-kernel, linux-kernel, Corentin Labbe

Compiling today next (20191210) fail to build with
arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts:53.25-55.4: ERROR (phandle_references): /soc/hdmi@1ee0000/ports/port@1/endpoint: Reference to non-existent node or label "hdmi_con_in"

This patch fixes the build by restoring this node.

Fixes: b120a822ef10 ("ARM: dts: allwinner: Split out non-SoC specific parts of Neutis N5")
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
---
 .../allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts  | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts b/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
index fb96d356055e..d6cc6592cfa3 100644
--- a/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
@@ -15,6 +15,17 @@
 		     "emlid,neutis-n5",
 		     "allwinner,sun50i-h5";
 
+	connector {
+		compatible = "hdmi-connector";
+		type = "a";
+
+		port {
+			hdmi_con_in: endpoint {
+				remote-endpoint = <&hdmi_out_con>;
+			};
+		};
+	};
+
 	vdd_cpux: gpio-regulator {
 		compatible = "regulator-gpio";
 		regulator-name = "vdd-cpux";
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: allwinner: restore hdmi_con_in node
  2019-12-10  9:28 [PATCH] ARM: dts: allwinner: restore hdmi_con_in node Corentin Labbe
@ 2019-12-10  9:34 ` Chen-Yu Tsai
  2019-12-10  9:47 ` Maxime Ripard
  1 sibling, 0 replies; 3+ messages in thread
From: Chen-Yu Tsai @ 2019-12-10  9:34 UTC (permalink / raw)
  To: Corentin Labbe
  Cc: Mark Rutland, Maxime Ripard, Rob Herring, Georgii Staroselskii,
	aleksandr.aleksandrov, devicetree, linux-arm-kernel,
	linux-kernel

On Tue, Dec 10, 2019 at 5:28 PM Corentin Labbe <clabbe@baylibre.com> wrote:
>
> Compiling today next (20191210) fail to build with
> arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts:53.25-55.4: ERROR (phandle_references): /soc/hdmi@1ee0000/ports/port@1/endpoint: Reference to non-existent node or label "hdmi_con_in"


Patch subject should read:

arm64: dts: allwinner: h5: emlid-neutis-n5-devboard: Restore hdmi_in_con node

ChenYu

> This patch fixes the build by restoring this node.
>
> Fixes: b120a822ef10 ("ARM: dts: allwinner: Split out non-SoC specific parts of Neutis N5")
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
> ---
>  .../allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts  | 11 +++++++++++
>  1 file changed, 11 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts b/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
> index fb96d356055e..d6cc6592cfa3 100644
> --- a/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
> +++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts
> @@ -15,6 +15,17 @@
>                      "emlid,neutis-n5",
>                      "allwinner,sun50i-h5";
>
> +       connector {
> +               compatible = "hdmi-connector";
> +               type = "a";
> +
> +               port {
> +                       hdmi_con_in: endpoint {
> +                               remote-endpoint = <&hdmi_out_con>;
> +                       };
> +               };
> +       };
> +
>         vdd_cpux: gpio-regulator {
>                 compatible = "regulator-gpio";
>                 regulator-name = "vdd-cpux";
> --
> 2.23.0
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: allwinner: restore hdmi_con_in node
  2019-12-10  9:28 [PATCH] ARM: dts: allwinner: restore hdmi_con_in node Corentin Labbe
  2019-12-10  9:34 ` Chen-Yu Tsai
@ 2019-12-10  9:47 ` Maxime Ripard
  1 sibling, 0 replies; 3+ messages in thread
From: Maxime Ripard @ 2019-12-10  9:47 UTC (permalink / raw)
  To: Corentin Labbe
  Cc: mark.rutland, robh+dt, wens, georgii.staroselskii,
	aleksandr.aleksandrov, devicetree, linux-arm-kernel,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 577 bytes --]

On Tue, Dec 10, 2019 at 09:28:07AM +0000, Corentin Labbe wrote:
> Compiling today next (20191210) fail to build with
> arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dts:53.25-55.4: ERROR (phandle_references): /soc/hdmi@1ee0000/ports/port@1/endpoint: Reference to non-existent node or label "hdmi_con_in"
>
> This patch fixes the build by restoring this node.
>
> Fixes: b120a822ef10 ("ARM: dts: allwinner: Split out non-SoC specific parts of Neutis N5")
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>

I've squashed it into that patch, thanks!
Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-10  9:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-10  9:28 [PATCH] ARM: dts: allwinner: restore hdmi_con_in node Corentin Labbe
2019-12-10  9:34 ` Chen-Yu Tsai
2019-12-10  9:47 ` Maxime Ripard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).