linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding
@ 2019-06-17 22:40 Rob Herring
  2019-06-18  2:27 ` Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2019-06-17 22:40 UTC (permalink / raw)
  To: devicetree; +Cc: Shawn Guo, linux-arm-kernel

In the conversion to DT schema, the addition of the i.MX7ULP binding got
dropped. Add it to the binding schema.

Fixes: a1a38e1f4d1d ("dt-bindings: arm: Convert FSL board/soc bindings to json-schema")
Cc: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Rob Herring <robh@kernel.org>
---
 Documentation/devicetree/bindings/arm/fsl.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/fsl.yaml b/Documentation/devicetree/bindings/arm/fsl.yaml
index fbeb56345b35..0a6b4eba2bb2 100644
--- a/Documentation/devicetree/bindings/arm/fsl.yaml
+++ b/Documentation/devicetree/bindings/arm/fsl.yaml
@@ -175,6 +175,12 @@ properties:
           - const: compulab,cl-som-imx7
           - const: fsl,imx7d
 
+      - description: i.MX7ULP based Boards
+        items:
+          - enum:
+              - tq,imx7ulp-evk            # i.MX7ULP Evaluation Kit
+          - const: fsl,imx7ulp
+
       - description: i.MX8MM based Boards
         items:
           - enum:
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding
  2019-06-17 22:40 [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding Rob Herring
@ 2019-06-18  2:27 ` Fabio Estevam
  2019-06-18 13:11   ` Rob Herring
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2019-06-18  2:27 UTC (permalink / raw)
  To: Rob Herring
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Shawn Guo,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE

On Mon, Jun 17, 2019 at 7:42 PM Rob Herring <robh@kernel.org> wrote:

> +      - description: i.MX7ULP based Boards
> +        items:
> +          - enum:
> +              - tq,imx7ulp-evk            # i.MX7ULP Evaluation Kit

This should be fsl,imx7ulp-evk instead.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding
  2019-06-18  2:27 ` Fabio Estevam
@ 2019-06-18 13:11   ` Rob Herring
  2019-06-18 13:31     ` Shawn Guo
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2019-06-18 13:11 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Shawn Guo,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE

On Mon, Jun 17, 2019 at 8:27 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> On Mon, Jun 17, 2019 at 7:42 PM Rob Herring <robh@kernel.org> wrote:
>
> > +      - description: i.MX7ULP based Boards
> > +        items:
> > +          - enum:
> > +              - tq,imx7ulp-evk            # i.MX7ULP Evaluation Kit
>
> This should be fsl,imx7ulp-evk instead.

Ugg. That was me typing in the wrong window...

Rob

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding
  2019-06-18 13:11   ` Rob Herring
@ 2019-06-18 13:31     ` Shawn Guo
  0 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2019-06-18 13:31 UTC (permalink / raw)
  To: Rob Herring
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Fabio Estevam,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE

On Tue, Jun 18, 2019 at 07:11:00AM -0600, Rob Herring wrote:
> On Mon, Jun 17, 2019 at 8:27 PM Fabio Estevam <festevam@gmail.com> wrote:
> >
> > On Mon, Jun 17, 2019 at 7:42 PM Rob Herring <robh@kernel.org> wrote:
> >
> > > +      - description: i.MX7ULP based Boards
> > > +        items:
> > > +          - enum:
> > > +              - tq,imx7ulp-evk            # i.MX7ULP Evaluation Kit
> >
> > This should be fsl,imx7ulp-evk instead.
> 
> Ugg. That was me typing in the wrong window...

Applied with it fixed.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-06-18 13:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-17 22:40 [PATCH] dt-bindings: arm: fsl: Add back missing i.MX7ULP binding Rob Herring
2019-06-18  2:27 ` Fabio Estevam
2019-06-18 13:11   ` Rob Herring
2019-06-18 13:31     ` Shawn Guo

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).