2020-11-13 15:09:30

by Cengiz Can

[permalink] [raw]
Subject: [PATCH] dt-bindings: fsl-imx-drm: fix example compatible string

Example `display-subsystem` has an incorrect compatible string.

Required properties section tells that developers should use
"fsl,imx-display-subsystem" as "compatible" string but the example
misses 'imx-' prefix.

Change example to have correct "compatible" string.

Signed-off-by: Cengiz Can <[email protected]>
---
Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt b/Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt
index 5a99490c17b9..3c35338a2867 100644
--- a/Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt
+++ b/Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt
@@ -12,7 +12,7 @@ Required properties:
example:

display-subsystem {
- compatible = "fsl,display-subsystem";
+ compatible = "fsl,imx-display-subsystem";
ports = <&ipu_di0>;
};

--
2.29.2


2020-11-21 13:36:36

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH] dt-bindings: fsl-imx-drm: fix example compatible string

On Fri, 13 Nov 2020 18:06:19 +0300, Cengiz Can wrote:
> Example `display-subsystem` has an incorrect compatible string.
>
> Required properties section tells that developers should use
> "fsl,imx-display-subsystem" as "compatible" string but the example
> misses 'imx-' prefix.
>
> Change example to have correct "compatible" string.
>
> Signed-off-by: Cengiz Can <[email protected]>
> ---
> Documentation/devicetree/bindings/display/imx/fsl-imx-drm.txt | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

Applied, thanks!