All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible
@ 2024-01-21 20:38 Jonas Karlman
  2024-01-22  0:16 ` Marek Vasut
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jonas Karlman @ 2024-01-21 20:38 UTC (permalink / raw)
  To: Marek Vasut, Tom Rini; +Cc: Jonas Karlman, u-boot

Remove the rockchip,rk3399-dwc3 compatible from the dwc3-of-simple
driver now that all boards have changed to use the dwc3-generic driver.

Also remove the amlogic,meson-gxl-dwc3 compatible, it is no longer in
use by any device tree in mainline linux or U-Boot.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
---
 drivers/usb/host/dwc3-of-simple.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/usb/host/dwc3-of-simple.c b/drivers/usb/host/dwc3-of-simple.c
index f9df59d2e5d7..de1797d02ec0 100644
--- a/drivers/usb/host/dwc3-of-simple.c
+++ b/drivers/usb/host/dwc3-of-simple.c
@@ -90,8 +90,6 @@ static int dwc3_of_simple_remove(struct udevice *dev)
 }
 
 static const struct udevice_id dwc3_of_simple_ids[] = {
-	{ .compatible = "amlogic,meson-gxl-dwc3" },
-	{ .compatible = "rockchip,rk3399-dwc3" },
 	{ .compatible = "ti,dwc3" },
 	{ }
 };
-- 
2.43.0


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

* Re: [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible
  2024-01-21 20:38 [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible Jonas Karlman
@ 2024-01-22  0:16 ` Marek Vasut
  2025-01-07 14:23 ` Mattijs Korpershoek
  2025-01-07 14:44 ` neil.armstrong
  2 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2024-01-22  0:16 UTC (permalink / raw)
  To: Jonas Karlman, Tom Rini; +Cc: u-boot

On 1/21/24 21:38, Jonas Karlman wrote:
> Remove the rockchip,rk3399-dwc3 compatible from the dwc3-of-simple
> driver now that all boards have changed to use the dwc3-generic driver.
> 
> Also remove the amlogic,meson-gxl-dwc3 compatible, it is no longer in
> use by any device tree in mainline linux or U-Boot.
> 
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>

Reviewed-by: Marek Vasut <marex@denx.de>

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

* Re: [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible
  2024-01-21 20:38 [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible Jonas Karlman
  2024-01-22  0:16 ` Marek Vasut
@ 2025-01-07 14:23 ` Mattijs Korpershoek
  2025-01-07 14:44 ` neil.armstrong
  2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2025-01-07 14:23 UTC (permalink / raw)
  To: Jonas Karlman, Marek Vasut, Tom Rini; +Cc: Jonas Karlman, u-boot

Hi Jonas,

Thank you for the patch.

On dim., janv. 21, 2024 at 20:38, Jonas Karlman <jonas@kwiboo.se> wrote:

> Remove the rockchip,rk3399-dwc3 compatible from the dwc3-of-simple
> driver now that all boards have changed to use the dwc3-generic driver.
>
> Also remove the amlogic,meson-gxl-dwc3 compatible, it is no longer in
> use by any device tree in mainline linux or U-Boot.
>
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  drivers/usb/host/dwc3-of-simple.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/usb/host/dwc3-of-simple.c b/drivers/usb/host/dwc3-of-simple.c
> index f9df59d2e5d7..de1797d02ec0 100644
> --- a/drivers/usb/host/dwc3-of-simple.c
> +++ b/drivers/usb/host/dwc3-of-simple.c
> @@ -90,8 +90,6 @@ static int dwc3_of_simple_remove(struct udevice *dev)
>  }
>  
>  static const struct udevice_id dwc3_of_simple_ids[] = {
> -	{ .compatible = "amlogic,meson-gxl-dwc3" },
> -	{ .compatible = "rockchip,rk3399-dwc3" },
>  	{ .compatible = "ti,dwc3" },
>  	{ }
>  };
> -- 
> 2.43.0

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

* Re: [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible
  2024-01-21 20:38 [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible Jonas Karlman
  2024-01-22  0:16 ` Marek Vasut
  2025-01-07 14:23 ` Mattijs Korpershoek
@ 2025-01-07 14:44 ` neil.armstrong
  2 siblings, 0 replies; 4+ messages in thread
From: neil.armstrong @ 2025-01-07 14:44 UTC (permalink / raw)
  To: Jonas Karlman, Marek Vasut, Tom Rini; +Cc: u-boot

On 21/01/2024 21:38, Jonas Karlman wrote:
> Remove the rockchip,rk3399-dwc3 compatible from the dwc3-of-simple
> driver now that all boards have changed to use the dwc3-generic driver.
> 
> Also remove the amlogic,meson-gxl-dwc3 compatible, it is no longer in
> use by any device tree in mainline linux or U-Boot.
> 
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
> ---
>   drivers/usb/host/dwc3-of-simple.c | 2 --
>   1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/usb/host/dwc3-of-simple.c b/drivers/usb/host/dwc3-of-simple.c
> index f9df59d2e5d7..de1797d02ec0 100644
> --- a/drivers/usb/host/dwc3-of-simple.c
> +++ b/drivers/usb/host/dwc3-of-simple.c
> @@ -90,8 +90,6 @@ static int dwc3_of_simple_remove(struct udevice *dev)
>   }
>   
>   static const struct udevice_id dwc3_of_simple_ids[] = {
> -	{ .compatible = "amlogic,meson-gxl-dwc3" },
> -	{ .compatible = "rockchip,rk3399-dwc3" },
>   	{ .compatible = "ti,dwc3" },
>   	{ }
>   };

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

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

end of thread, other threads:[~2025-01-07 14:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21 20:38 [PATCH] usb: dwc3-of-simple: Remove Amlogic and Rockchip compatible Jonas Karlman
2024-01-22  0:16 ` Marek Vasut
2025-01-07 14:23 ` Mattijs Korpershoek
2025-01-07 14:44 ` neil.armstrong

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.