linux-phy.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h
@ 2025-11-12  8:52 Andy Shevchenko
  2025-11-18  9:14 ` Neil Armstrong
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andy Shevchenko @ 2025-11-12  8:52 UTC (permalink / raw)
  To: Inochi Amaoto, Andy Shevchenko, linux-phy, sophgo, linux-kernel
  Cc: Vinod Koul, Kishon Vijay Abraham I, Chen Wang

of_gpio.h is deprecated and subject to remove.
The driver doesn't use it, simply remove the unused header.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/phy/sophgo/phy-cv1800-usb2.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/phy/sophgo/phy-cv1800-usb2.c b/drivers/phy/sophgo/phy-cv1800-usb2.c
index 64f8e37b4b52..6fe846534e9c 100644
--- a/drivers/phy/sophgo/phy-cv1800-usb2.c
+++ b/drivers/phy/sophgo/phy-cv1800-usb2.c
@@ -11,7 +11,6 @@
 #include <linux/module.h>
 #include <linux/of.h>
 #include <linux/of_address.h>
-#include <linux/of_gpio.h>
 #include <linux/platform_device.h>
 #include <linux/phy/phy.h>
 #include <linux/regmap.h>
-- 
2.50.1


-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

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

* Re: [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h
  2025-11-12  8:52 [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h Andy Shevchenko
@ 2025-11-18  9:14 ` Neil Armstrong
  2025-11-18  9:48 ` Inochi Amaoto
  2025-11-18 17:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2025-11-18  9:14 UTC (permalink / raw)
  To: Andy Shevchenko, Inochi Amaoto, linux-phy, sophgo, linux-kernel
  Cc: Vinod Koul, Kishon Vijay Abraham I, Chen Wang

On 11/12/25 09:52, Andy Shevchenko wrote:
> of_gpio.h is deprecated and subject to remove.
> The driver doesn't use it, simply remove the unused header.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>   drivers/phy/sophgo/phy-cv1800-usb2.c | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/phy/sophgo/phy-cv1800-usb2.c b/drivers/phy/sophgo/phy-cv1800-usb2.c
> index 64f8e37b4b52..6fe846534e9c 100644
> --- a/drivers/phy/sophgo/phy-cv1800-usb2.c
> +++ b/drivers/phy/sophgo/phy-cv1800-usb2.c
> @@ -11,7 +11,6 @@
>   #include <linux/module.h>
>   #include <linux/of.h>
>   #include <linux/of_address.h>
> -#include <linux/of_gpio.h>
>   #include <linux/platform_device.h>
>   #include <linux/phy/phy.h>
>   #include <linux/regmap.h>

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

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

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

* Re: [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h
  2025-11-12  8:52 [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h Andy Shevchenko
  2025-11-18  9:14 ` Neil Armstrong
@ 2025-11-18  9:48 ` Inochi Amaoto
  2025-11-18 17:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Inochi Amaoto @ 2025-11-18  9:48 UTC (permalink / raw)
  To: Andy Shevchenko, Inochi Amaoto, linux-phy, sophgo, linux-kernel
  Cc: Vinod Koul, Kishon Vijay Abraham I, Chen Wang

On Wed, Nov 12, 2025 at 09:52:20AM +0100, Andy Shevchenko wrote:
> of_gpio.h is deprecated and subject to remove.
> The driver doesn't use it, simply remove the unused header.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/phy/sophgo/phy-cv1800-usb2.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/phy/sophgo/phy-cv1800-usb2.c b/drivers/phy/sophgo/phy-cv1800-usb2.c
> index 64f8e37b4b52..6fe846534e9c 100644
> --- a/drivers/phy/sophgo/phy-cv1800-usb2.c
> +++ b/drivers/phy/sophgo/phy-cv1800-usb2.c
> @@ -11,7 +11,6 @@
>  #include <linux/module.h>
>  #include <linux/of.h>
>  #include <linux/of_address.h>
> -#include <linux/of_gpio.h>
>  #include <linux/platform_device.h>
>  #include <linux/phy/phy.h>
>  #include <linux/regmap.h>
> -- 
> 2.50.1
> 
> 
> -- 
> linux-phy mailing list
> linux-phy@lists.infradead.org
> https://lists.infradead.org/mailman/listinfo/linux-phy

LGTM

Reviewed-by: Inochi Amaoto <inochiama@gmail.com>

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

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

* Re: [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h
  2025-11-12  8:52 [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h Andy Shevchenko
  2025-11-18  9:14 ` Neil Armstrong
  2025-11-18  9:48 ` Inochi Amaoto
@ 2025-11-18 17:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2025-11-18 17:18 UTC (permalink / raw)
  To: Inochi Amaoto, linux-phy, sophgo, linux-kernel, Andy Shevchenko
  Cc: Kishon Vijay Abraham I, Chen Wang


On Wed, 12 Nov 2025 09:52:20 +0100, Andy Shevchenko wrote:
> of_gpio.h is deprecated and subject to remove.
> The driver doesn't use it, simply remove the unused header.
> 
> 

Applied, thanks!

[1/1] phy: sophgo: Remove unused of_gpio.h
      commit: 42690b8ec861b502538e425c5a7feb7a38764f04

Best regards,
-- 
~Vinod



-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

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

end of thread, other threads:[~2025-11-18 17:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-12  8:52 [PATCH v1 1/1] phy: sophgo: Remove unused of_gpio.h Andy Shevchenko
2025-11-18  9:14 ` Neil Armstrong
2025-11-18  9:48 ` Inochi Amaoto
2025-11-18 17:18 ` Vinod Koul

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