All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: vt8500: replace "uhci" nodename with generic name "usb"
@ 2024-04-23 15:07 Mohammad Shehar Yaar Tausif
  2024-04-23 15:16 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 3+ messages in thread
From: Mohammad Shehar Yaar Tausif @ 2024-04-23 15:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley
  Cc: Mohammad Shehar Yaar Tausif, devicetree, linux-kernel

Replace "uhci" nodenames with "usb" as it's generic and aligns with
the schema binding.

Signed-off-by: Mohammad Shehar Yaar Tausif <sheharyaar48@gmail.com>
---
 arch/arm/boot/dts/vt8500/vt8500.dtsi | 2 +-
 arch/arm/boot/dts/vt8500/wm8505.dtsi | 2 +-
 arch/arm/boot/dts/vt8500/wm8650.dtsi | 2 +-
 arch/arm/boot/dts/vt8500/wm8750.dtsi | 4 ++--
 arch/arm/boot/dts/vt8500/wm8850.dtsi | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/boot/dts/vt8500/vt8500.dtsi b/arch/arm/boot/dts/vt8500/vt8500.dtsi
index b7e09eff5bb2..f23cb5ee11ae 100644
--- a/arch/arm/boot/dts/vt8500/vt8500.dtsi
+++ b/arch/arm/boot/dts/vt8500/vt8500.dtsi
@@ -115,7 +115,7 @@ ehci@d8007900 {
 			interrupts = <43>;
 		};
 
-		uhci@d8007b00 {
+		usb@d8007b00 {
 			compatible = "platform-uhci";
 			reg = <0xd8007b00 0x200>;
 			interrupts = <43>;
diff --git a/arch/arm/boot/dts/vt8500/wm8505.dtsi b/arch/arm/boot/dts/vt8500/wm8505.dtsi
index 168cd12b07bc..d9e1280372c5 100644
--- a/arch/arm/boot/dts/vt8500/wm8505.dtsi
+++ b/arch/arm/boot/dts/vt8500/wm8505.dtsi
@@ -213,7 +213,7 @@ ehci@d8007100 {
 			interrupts = <1>;
 		};
 
-		uhci@d8007300 {
+		usb@d8007300 {
 			compatible = "platform-uhci";
 			reg = <0xd8007300 0x200>;
 			interrupts = <0>;
diff --git a/arch/arm/boot/dts/vt8500/wm8650.dtsi b/arch/arm/boot/dts/vt8500/wm8650.dtsi
index bc057b6f7d16..35d12d77efc0 100644
--- a/arch/arm/boot/dts/vt8500/wm8650.dtsi
+++ b/arch/arm/boot/dts/vt8500/wm8650.dtsi
@@ -185,7 +185,7 @@ ehci@d8007900 {
 			interrupts = <43>;
 		};
 
-		uhci@d8007b00 {
+		usb@d8007b00 {
 			compatible = "platform-uhci";
 			reg = <0xd8007b00 0x200>;
 			interrupts = <43>;
diff --git a/arch/arm/boot/dts/vt8500/wm8750.dtsi b/arch/arm/boot/dts/vt8500/wm8750.dtsi
index 33aeb37491f4..b292f85d4e69 100644
--- a/arch/arm/boot/dts/vt8500/wm8750.dtsi
+++ b/arch/arm/boot/dts/vt8500/wm8750.dtsi
@@ -257,13 +257,13 @@ ehci@d8007900 {
 			interrupts = <26>;
 		};
 
-		uhci@d8007b00 {
+		usb@d8007b00 {
 			compatible = "platform-uhci";
 			reg = <0xd8007b00 0x200>;
 			interrupts = <26>;
 		};
 
-		uhci@d8008d00 {
+		usb@d8008d00 {
 			compatible = "platform-uhci";
 			reg = <0xd8008d00 0x200>;
 			interrupts = <26>;
diff --git a/arch/arm/boot/dts/vt8500/wm8850.dtsi b/arch/arm/boot/dts/vt8500/wm8850.dtsi
index 65c9271050e6..c61717ebb4f1 100644
--- a/arch/arm/boot/dts/vt8500/wm8850.dtsi
+++ b/arch/arm/boot/dts/vt8500/wm8850.dtsi
@@ -244,13 +244,13 @@ ehci@d8007900 {
 			interrupts = <26>;
 		};
 
-		uhci@d8007b00 {
+		usb@d8007b00 {
 			compatible = "platform-uhci";
 			reg = <0xd8007b00 0x200>;
 			interrupts = <26>;
 		};
 
-		uhci@d8008d00 {
+		usb@d8008d00 {
 			compatible = "platform-uhci";
 			reg = <0xd8008d00 0x200>;
 			interrupts = <26>;
-- 
2.44.0


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

* Re: [PATCH] ARM: dts: vt8500: replace "uhci" nodename with generic name "usb"
  2024-04-23 15:07 [PATCH] ARM: dts: vt8500: replace "uhci" nodename with generic name "usb" Mohammad Shehar Yaar Tausif
@ 2024-04-23 15:16 ` Krzysztof Kozlowski
  2024-05-15  4:53   ` Mohammad Shehar Yaar Tausif
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2024-04-23 15:16 UTC (permalink / raw)
  To: Mohammad Shehar Yaar Tausif, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: devicetree, linux-kernel

On 23/04/2024 17:07, Mohammad Shehar Yaar Tausif wrote:
> Replace "uhci" nodenames with "usb" as it's generic and aligns with
> the schema binding.
> 
> Signed-off-by: Mohammad Shehar Yaar Tausif <sheharyaar48@gmail.com>
> ---
>  arch/arm/boot/dts/vt8500/vt8500.dtsi | 2 +-
>  arch/arm/boot/dts/vt8500/wm8505.dtsi | 2 +-
>  arch/arm/boot/dts/vt8500/wm8650.dtsi | 2 +-
>  arch/arm/boot/dts/vt8500/wm8750.dtsi | 4 ++--
>  arch/arm/boot/dts/vt8500/wm8850.dtsi | 4 ++--
>  5 files changed, 7 insertions(+), 7 deletions(-)


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH] ARM: dts: vt8500: replace "uhci" nodename with generic name "usb"
  2024-04-23 15:16 ` Krzysztof Kozlowski
@ 2024-05-15  4:53   ` Mohammad Shehar Yaar Tausif
  0 siblings, 0 replies; 3+ messages in thread
From: Mohammad Shehar Yaar Tausif @ 2024-05-15  4:53 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree, linux-kernel

On Tue, Apr 23, 2024 at 8:46 PM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> On 23/04/2024 17:07, Mohammad Shehar Yaar Tausif wrote:
> > Replace "uhci" nodenames with "usb" as it's generic and aligns with
> > the schema binding.
> >
> > Signed-off-by: Mohammad Shehar Yaar Tausif <sheharyaar48@gmail.com>
> > ---
> >  arch/arm/boot/dts/vt8500/vt8500.dtsi | 2 +-
> >  arch/arm/boot/dts/vt8500/wm8505.dtsi | 2 +-
> >  arch/arm/boot/dts/vt8500/wm8650.dtsi | 2 +-
> >  arch/arm/boot/dts/vt8500/wm8750.dtsi | 4 ++--
> >  arch/arm/boot/dts/vt8500/wm8850.dtsi | 4 ++--
> >  5 files changed, 7 insertions(+), 7 deletions(-)
>
>
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>
> Best regards,
> Krzysztof
>

Hi,

Is there any further feedback or update for this ? This patch is not
yet merged but the related dt-binding patch that has been merged :
https://lore.kernel.org/all/20240423150550.91055-1-sheharyaar48@gmail.com/.
I understand that this is a trivial patch and the maintainers may be
busy with important work.

Regards,
Shehar

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

end of thread, other threads:[~2024-05-15  4:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-23 15:07 [PATCH] ARM: dts: vt8500: replace "uhci" nodename with generic name "usb" Mohammad Shehar Yaar Tausif
2024-04-23 15:16 ` Krzysztof Kozlowski
2024-05-15  4:53   ` Mohammad Shehar Yaar Tausif

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.