devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: omap3-gta04: fix compatible record for GTA04 board
@ 2023-02-16 16:46 H. Nikolaus Schaller
  2023-02-21  2:04 ` Rob Herring
  0 siblings, 1 reply; 3+ messages in thread
From: H. Nikolaus Schaller @ 2023-02-16 16:46 UTC (permalink / raw)
  To: Andrew Davis, Rob Herring, Krzysztof Kozlowski,
	Benoît Cousson, Tony Lindgren, Linus Walleij, Chris Morgan,
	Greg Kroah-Hartman
  Cc: devicetree, linux-kernel, linux-omap, letux-kernel, kernel,
	H. Nikolaus Schaller

Vendor of the GTA04 boards is and always was
Golden Delicious Computers GmbH&Co. KG, Germany
and not Texas Instruments.

Maybe, TI was references here because the GTA04 was based on
the BeagleBoard design which is designated as "ti,omap3-beagle".

While we are looking at vendors of omap3 based devices, we also
add the record for OpenPandora. The DTS files for the pandora
device already make use of it.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 Documentation/devicetree/bindings/vendor-prefixes.yaml | 4 ++++
 arch/arm/boot/dts/omap3-gta04.dtsi                     | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index 70ffb3780621b..1476aaaebf883 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -508,6 +508,8 @@ patternProperties:
     description: GlobalTop Technology, Inc.
   "^gmt,.*":
     description: Global Mixed-mode Technology, Inc.
+  "^goldelico,.*":
+    description: Golden Delicious Computers GmbH & Co. KG
   "^goodix,.*":
     description: Shenzhen Huiding Technology Co., Ltd.
   "^google,.*":
@@ -959,6 +961,8 @@ patternProperties:
     description: OpenCores.org
   "^openembed,.*":
     description: OpenEmbed
+  "^openpandora,.*":
+    description: OpenPandora GmbH
   "^openrisc,.*":
     description: OpenRISC.io
   "^option,.*":
diff --git a/arch/arm/boot/dts/omap3-gta04.dtsi b/arch/arm/boot/dts/omap3-gta04.dtsi
index 87e0ab1bbe957..5932012d04966 100644
--- a/arch/arm/boot/dts/omap3-gta04.dtsi
+++ b/arch/arm/boot/dts/omap3-gta04.dtsi
@@ -11,8 +11,7 @@
 
 / {
 	model = "OMAP3 GTA04";
-	compatible = "ti,omap3-gta04", "ti,omap3630", "ti,omap36xx", "ti,omap3";
-
+	compatible = "goldelico,gta04", "ti,omap3630", "ti,omap36xx", "ti,omap3";
 	cpus {
 		cpu@0 {
 			cpu0-supply = <&vcc>;
-- 
2.38.1


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

* Re: [PATCH] ARM: dts: omap3-gta04: fix compatible record for GTA04 board
  2023-02-16 16:46 [PATCH] ARM: dts: omap3-gta04: fix compatible record for GTA04 board H. Nikolaus Schaller
@ 2023-02-21  2:04 ` Rob Herring
  2023-03-27  8:16   ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2023-02-21  2:04 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Andrew Davis, kernel, Krzysztof Kozlowski, letux-kernel,
	Benoît Cousson, linux-kernel, linux-omap, Linus Walleij,
	Chris Morgan, Rob Herring, Greg Kroah-Hartman, devicetree,
	Tony Lindgren


On Thu, 16 Feb 2023 17:46:43 +0100, H. Nikolaus Schaller wrote:
> Vendor of the GTA04 boards is and always was
> Golden Delicious Computers GmbH&Co. KG, Germany
> and not Texas Instruments.
> 
> Maybe, TI was references here because the GTA04 was based on
> the BeagleBoard design which is designated as "ti,omap3-beagle".
> 
> While we are looking at vendors of omap3 based devices, we also
> add the record for OpenPandora. The DTS files for the pandora
> device already make use of it.
> 
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> ---
>  Documentation/devicetree/bindings/vendor-prefixes.yaml | 4 ++++
>  arch/arm/boot/dts/omap3-gta04.dtsi                     | 3 +--
>  2 files changed, 5 insertions(+), 2 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


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

* Re: [PATCH] ARM: dts: omap3-gta04: fix compatible record for GTA04 board
  2023-02-21  2:04 ` Rob Herring
@ 2023-03-27  8:16   ` Tony Lindgren
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2023-03-27  8:16 UTC (permalink / raw)
  To: Rob Herring
  Cc: H. Nikolaus Schaller, Andrew Davis, kernel, Krzysztof Kozlowski,
	letux-kernel, Benoît Cousson, linux-kernel, linux-omap,
	Linus Walleij, Chris Morgan, Rob Herring, Greg Kroah-Hartman,
	devicetree

* Rob Herring <robh@kernel.org> [230221 02:04]:
> 
> On Thu, 16 Feb 2023 17:46:43 +0100, H. Nikolaus Schaller wrote:
> > Vendor of the GTA04 boards is and always was
> > Golden Delicious Computers GmbH&Co. KG, Germany
> > and not Texas Instruments.
> > 
> > Maybe, TI was references here because the GTA04 was based on
> > the BeagleBoard design which is designated as "ti,omap3-beagle".
> > 
> > While we are looking at vendors of omap3 based devices, we also
> > add the record for OpenPandora. The DTS files for the pandora
> > device already make use of it.
> > 
> > Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> > ---
> >  Documentation/devicetree/bindings/vendor-prefixes.yaml | 4 ++++
> >  arch/arm/boot/dts/omap3-gta04.dtsi                     | 3 +--
> >  2 files changed, 5 insertions(+), 2 deletions(-)
> > 
> 
> Acked-by: Rob Herring <robh@kernel.org>

Applying into omap-for-v6.4/dt thanks.

Tony

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

end of thread, other threads:[~2023-03-27  8:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 16:46 [PATCH] ARM: dts: omap3-gta04: fix compatible record for GTA04 board H. Nikolaus Schaller
2023-02-21  2:04 ` Rob Herring
2023-03-27  8:16   ` Tony Lindgren

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