* [PATCH] dt-bindings: Add vendor prefix for BeagleBoard.org
@ 2019-11-21 19:01 Jason Kridner
2019-11-21 23:16 ` Rob Herring
0 siblings, 1 reply; 3+ messages in thread
From: Jason Kridner @ 2019-11-21 19:01 UTC (permalink / raw)
To: devicetree
Cc: Jason Kridner, Robert Nelson, Rob Herring, Mark Rutland,
Maxime Ripard, Shawn Guo, Heiko Stuebner, Sam Ravnborg,
Icenowy Zheng, Tomi Valkeinen, Laurent Pinchart, Jason Kridner,
Jyri Sarha, linux-kernel
Add vendor prefix for BeagleBoard.org Foundation
Signed-off-by: Jason Kridner <jdk@ti.com>
---
Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index 967e78c5ec0a..3e3d8e3c28d3 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -139,6 +139,8 @@ patternProperties:
description: Shenzhen AZW Technology Co., Ltd.
"^bananapi,.*":
description: BIPAI KEJI LIMITED
+ "^beagleboard.org,.*":
+ description: BeagleBoard.org Foundation
"^bhf,.*":
description: Beckhoff Automation GmbH & Co. KG
"^bitmain,.*":
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] dt-bindings: Add vendor prefix for BeagleBoard.org
2019-11-21 19:01 [PATCH] dt-bindings: Add vendor prefix for BeagleBoard.org Jason Kridner
@ 2019-11-21 23:16 ` Rob Herring
2019-11-21 23:42 ` Jason Kridner
0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2019-11-21 23:16 UTC (permalink / raw)
To: Jason Kridner
Cc: devicetree, Robert Nelson, Mark Rutland, Maxime Ripard, Shawn Guo,
Heiko Stuebner, Sam Ravnborg, Icenowy Zheng, Tomi Valkeinen,
Laurent Pinchart, Jason Kridner, Jyri Sarha,
linux-kernel@vger.kernel.org
On Thu, Nov 21, 2019 at 1:02 PM Jason Kridner <jkridner@gmail.com> wrote:
>
> Add vendor prefix for BeagleBoard.org Foundation
>
> Signed-off-by: Jason Kridner <jdk@ti.com>
Author and Sob emails don't match.
> ---
> Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> index 967e78c5ec0a..3e3d8e3c28d3 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> @@ -139,6 +139,8 @@ patternProperties:
> description: Shenzhen AZW Technology Co., Ltd.
> "^bananapi,.*":
> description: BIPAI KEJI LIMITED
> + "^beagleboard.org,.*":
'.' would need need to be escaped as this is a regex.
The '.' may cause some problems with schemas. We can adapt or just
drop the '.org'.
> + description: BeagleBoard.org Foundation
> "^bhf,.*":
> description: Beckhoff Automation GmbH & Co. KG
> "^bitmain,.*":
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] dt-bindings: Add vendor prefix for BeagleBoard.org
2019-11-21 23:16 ` Rob Herring
@ 2019-11-21 23:42 ` Jason Kridner
0 siblings, 0 replies; 3+ messages in thread
From: Jason Kridner @ 2019-11-21 23:42 UTC (permalink / raw)
To: Rob Herring, Caleb Robey
Cc: devicetree, Robert Nelson, Mark Rutland, Maxime Ripard, Shawn Guo,
Heiko Stuebner, Sam Ravnborg, Icenowy Zheng, Tomi Valkeinen,
Laurent Pinchart, Jason Kridner, Jyri Sarha,
linux-kernel@vger.kernel.org
On Thu, Nov 21, 2019 at 6:17 PM Rob Herring <robh+dt@kernel.org> wrote:
>
> On Thu, Nov 21, 2019 at 1:02 PM Jason Kridner <jkridner@gmail.com> wrote:
> >
> > Add vendor prefix for BeagleBoard.org Foundation
> >
> > Signed-off-by: Jason Kridner <jdk@ti.com>
>
> Author and Sob emails don't match.
I'll set the from address to jdk@ti.com in another submission.
>
> > ---
> > Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > index 967e78c5ec0a..3e3d8e3c28d3 100644
> > --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > @@ -139,6 +139,8 @@ patternProperties:
> > description: Shenzhen AZW Technology Co., Ltd.
> > "^bananapi,.*":
> > description: BIPAI KEJI LIMITED
> > + "^beagleboard.org,.*":
>
> '.' would need need to be escaped as this is a regex.
>
> The '.' may cause some problems with schemas. We can adapt or just
> drop the '.org'.
>
I tried to run some YAML syntax checkers and they didn't like a
backslash ('\') before the period ('.'). YAML specification
documentation didn't specify how to escape a period.
My preference is to keep beagleboard.org, but, out of simplicity and
brevity, I can resubmit without it.
The device tree submission for BeagleBone AI will need to updated accordingly.
--
https://beagleboard.org/about
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-21 23:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-21 19:01 [PATCH] dt-bindings: Add vendor prefix for BeagleBoard.org Jason Kridner
2019-11-21 23:16 ` Rob Herring
2019-11-21 23:42 ` Jason Kridner
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).