dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] Drop of_gpio header
@ 2022-08-12 20:57 Maíra Canal
  2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Chun-Kuang Hu, Jernej Skrabec, Emma Anholt, Neil Armstrong,
	Jonas Karlman, linux-kernel, Robert Foss, Abhinav Kumar,
	Maíra Canal, linux-mediatek, dri-devel, Andrzej Hajda,
	Alain Volmat, Matthias Brugger, Dmitry Baryshkov, Sean Paul,
	Laurent Pinchart

The legacy GPIO header <linux/gpio.h> and the deprecated OF GPIO header
<linux/of_gpio.h> should not be used anymore due to the existance of the
new GPIO header <linux/gpio/consumer.h>. Currently, the DRM still holds
seven OF GPIO header includes. That said, this series drops all the
OF GPIO header includes from the DRM, replacing it, when proper, with
the OF header.

Best Regards,
- Maíra Canal

Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Cc: Neil Armstrong <narmstrong@baylibre.com>
Cc: Robert Foss <robert.foss@linaro.org>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Cc: Jonas Karlman <jonas@kwiboo.se>
Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
Cc: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Abhinav Kumar <quic_abhinavk@quicinc.com>
Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Sean Paul <sean@poorly.run>
Cc: Alain Volmat <alain.volmat@foss.st.com>
Cc: Emma Anholt <emma@anholt.net>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: linux-mediatek@lists.infradead.org

Maíra Canal (5):
  drm/bridge: anx7625: Drop of_gpio header
  drm/mediatek: Drop of_gpio header
  drm/msm: Drop of_gpio header
  drm/sti: Drop of_gpio header
  drm/vc4: Drop of_gpio header

 drivers/gpu/drm/bridge/analogix/anx7625.c | 1 -
 drivers/gpu/drm/mediatek/mtk_dpi.c        | 1 -
 drivers/gpu/drm/mediatek/mtk_hdmi.c       | 1 -
 drivers/gpu/drm/msm/dp/dp_parser.c        | 2 +-
 drivers/gpu/drm/msm/hdmi/hdmi.c           | 1 -
 drivers/gpu/drm/sti/sti_dvo.c             | 2 +-
 drivers/gpu/drm/vc4/vc4_hdmi.c            | 1 -
 7 files changed, 2 insertions(+), 7 deletions(-)

-- 
2.37.1


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

* [PATCH 1/5] drm/bridge: anx7625: Drop of_gpio header
  2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
@ 2022-08-12 20:57 ` Maíra Canal
  2022-08-29 13:51   ` Robert Foss
  2023-04-24 11:16   ` Maíra Canal
  2022-08-12 20:57 ` [PATCH 2/5] drm/mediatek: " Maíra Canal
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Jernej Skrabec, Neil Armstrong, Jonas Karlman, linux-kernel,
	Robert Foss, Maíra Canal, dri-devel, Andrzej Hajda,
	Laurent Pinchart

This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
yet fail to use symbols from it, so drop the include.

Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Cc: Neil Armstrong <narmstrong@baylibre.com>
Cc: Robert Foss <robert.foss@linaro.org>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Cc: Jonas Karlman <jonas@kwiboo.se>
Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
---
 drivers/gpu/drm/bridge/analogix/anx7625.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c b/drivers/gpu/drm/bridge/analogix/anx7625.c
index 79fc7a50b497..d7d4ca1c8b30 100644
--- a/drivers/gpu/drm/bridge/analogix/anx7625.c
+++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
@@ -17,7 +17,6 @@
 #include <linux/types.h>
 #include <linux/workqueue.h>
 
-#include <linux/of_gpio.h>
 #include <linux/of_graph.h>
 #include <linux/of_platform.h>
 
-- 
2.37.1


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

* [PATCH 2/5] drm/mediatek: Drop of_gpio header
  2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
  2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
@ 2022-08-12 20:57 ` Maíra Canal
  2022-08-25 23:25   ` Chun-Kuang Hu
  2022-08-12 20:57 ` [PATCH 3/5] drm/msm: " Maíra Canal
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Chun-Kuang Hu, linux-kernel, dri-devel, Maíra Canal,
	linux-mediatek, Matthias Brugger

These drivers include the deprecated OF GPIO header <linux/of_gpio.h>
yet fail to use symbols from it, so drop the include.

Cc: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: linux-mediatek@lists.infradead.org
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
---
 drivers/gpu/drm/mediatek/mtk_dpi.c  | 1 -
 drivers/gpu/drm/mediatek/mtk_hdmi.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/mediatek/mtk_dpi.c b/drivers/gpu/drm/mediatek/mtk_dpi.c
index 630a4e301ef6..508a6d994e83 100644
--- a/drivers/gpu/drm/mediatek/mtk_dpi.c
+++ b/drivers/gpu/drm/mediatek/mtk_dpi.c
@@ -11,7 +11,6 @@
 #include <linux/media-bus-format.h>
 #include <linux/of.h>
 #include <linux/of_device.h>
-#include <linux/of_gpio.h>
 #include <linux/of_graph.h>
 #include <linux/pinctrl/consumer.h>
 #include <linux/platform_device.h>
diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c b/drivers/gpu/drm/mediatek/mtk_hdmi.c
index 3196189429bc..4c80b6896dc3 100644
--- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
+++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
@@ -16,7 +16,6 @@
 #include <linux/mutex.h>
 #include <linux/of_platform.h>
 #include <linux/of.h>
-#include <linux/of_gpio.h>
 #include <linux/of_graph.h>
 #include <linux/phy/phy.h>
 #include <linux/platform_device.h>
-- 
2.37.1


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

* [PATCH 3/5] drm/msm: Drop of_gpio header
  2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
  2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
  2022-08-12 20:57 ` [PATCH 2/5] drm/mediatek: " Maíra Canal
@ 2022-08-12 20:57 ` Maíra Canal
  2022-08-12 20:57 ` [PATCH 4/5] drm/sti: " Maíra Canal
  2022-08-12 20:57 ` [PATCH 5/5] drm/vc4: " Maíra Canal
  4 siblings, 0 replies; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: linux-kernel, dri-devel, Abhinav Kumar, Maíra Canal,
	Dmitry Baryshkov, Sean Paul

These drivers include the deprecated OF GPIO header <linux/of_gpio.h>
yet fail to use symbols from it, so drop the include.

Cc: Rob Clark <robdclark@gmail.com>
Cc: Abhinav Kumar <quic_abhinavk@quicinc.com>
Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Sean Paul <sean@poorly.run>
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
---
 drivers/gpu/drm/msm/dp/dp_parser.c | 2 +-
 drivers/gpu/drm/msm/hdmi/hdmi.c    | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/msm/dp/dp_parser.c b/drivers/gpu/drm/msm/dp/dp_parser.c
index f6ab3b5586ce..9a1bd92dcdc5 100644
--- a/drivers/gpu/drm/msm/dp/dp_parser.c
+++ b/drivers/gpu/drm/msm/dp/dp_parser.c
@@ -3,7 +3,7 @@
  * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  */
 
-#include <linux/of_gpio.h>
+#include <linux/of.h>
 #include <linux/phy/phy.h>
 
 #include <drm/drm_of.h>
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdmi.c
index 93fe61b86967..f178c424257b 100644
--- a/drivers/gpu/drm/msm/hdmi/hdmi.c
+++ b/drivers/gpu/drm/msm/hdmi/hdmi.c
@@ -6,7 +6,6 @@
  */
 
 #include <linux/of_irq.h>
-#include <linux/of_gpio.h>
 
 #include <drm/drm_bridge_connector.h>
 #include <drm/drm_of.h>
-- 
2.37.1


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

* [PATCH 4/5] drm/sti: Drop of_gpio header
  2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
                   ` (2 preceding siblings ...)
  2022-08-12 20:57 ` [PATCH 3/5] drm/msm: " Maíra Canal
@ 2022-08-12 20:57 ` Maíra Canal
  2023-04-22 16:55   ` Alain Volmat
  2023-04-24 11:14   ` Maíra Canal
  2022-08-12 20:57 ` [PATCH 5/5] drm/vc4: " Maíra Canal
  4 siblings, 2 replies; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Maíra Canal, linux-kernel, dri-devel, Alain Volmat

This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
yet fail to use symbols from it, so drop this include.

Cc: Alain Volmat <alain.volmat@foss.st.com>
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
---
 drivers/gpu/drm/sti/sti_dvo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/sti/sti_dvo.c b/drivers/gpu/drm/sti/sti_dvo.c
index b6ee8a82e656..0fc7710b054a 100644
--- a/drivers/gpu/drm/sti/sti_dvo.c
+++ b/drivers/gpu/drm/sti/sti_dvo.c
@@ -8,7 +8,7 @@
 #include <linux/component.h>
 #include <linux/debugfs.h>
 #include <linux/module.h>
-#include <linux/of_gpio.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 
 #include <drm/drm_atomic_helper.h>
-- 
2.37.1


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

* [PATCH 5/5] drm/vc4: Drop of_gpio header
  2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
                   ` (3 preceding siblings ...)
  2022-08-12 20:57 ` [PATCH 4/5] drm/sti: " Maíra Canal
@ 2022-08-12 20:57 ` Maíra Canal
  2022-08-15  8:06   ` Maxime Ripard
  4 siblings, 1 reply; 12+ messages in thread
From: Maíra Canal @ 2022-08-12 20:57 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Maíra Canal, linux-kernel, dri-devel, Emma Anholt

This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
yet fail to use symbols from it, so drop the include.

Cc: Emma Anholt <emma@anholt.net>
Cc: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
---
 drivers/gpu/drm/vc4/vc4_hdmi.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/vc4/vc4_hdmi.c b/drivers/gpu/drm/vc4/vc4_hdmi.c
index 6f61a1b8a1a3..84e5a91c2ea7 100644
--- a/drivers/gpu/drm/vc4/vc4_hdmi.c
+++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
@@ -42,7 +42,6 @@
 #include <linux/gpio/consumer.h>
 #include <linux/i2c.h>
 #include <linux/of_address.h>
-#include <linux/of_gpio.h>
 #include <linux/of_platform.h>
 #include <linux/pm_runtime.h>
 #include <linux/rational.h>
-- 
2.37.1


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

* Re: [PATCH 5/5] drm/vc4: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 5/5] drm/vc4: " Maíra Canal
@ 2022-08-15  8:06   ` Maxime Ripard
  0 siblings, 0 replies; 12+ messages in thread
From: Maxime Ripard @ 2022-08-15  8:06 UTC (permalink / raw)
  To: mairacanal, airlied, daniel; +Cc: dri-devel, Maxime Ripard, emma, linux-kernel

On Fri, 12 Aug 2022 17:57:46 -0300, Maíra Canal wrote:
> This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop the include.
> 
> 

Applied to drm/drm-misc (drm-misc-next).

Thanks!
Maxime

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

* Re: [PATCH 2/5] drm/mediatek: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 2/5] drm/mediatek: " Maíra Canal
@ 2022-08-25 23:25   ` Chun-Kuang Hu
  0 siblings, 0 replies; 12+ messages in thread
From: Chun-Kuang Hu @ 2022-08-25 23:25 UTC (permalink / raw)
  To: Maíra Canal
  Cc: Chun-Kuang Hu, David Airlie, linux-kernel, DRI Development,
	moderated list:ARM/Mediatek SoC support, Maxime Ripard,
	Matthias Brugger

Hi, Maira:

Maíra Canal <mairacanal@riseup.net> 於 2022年8月13日 週六 凌晨4:58寫道:
>
> These drivers include the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop the include.

Applied to mediatek-drm-next [1], thanks.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/chunkuang.hu/linux.git/log/?h=mediatek-drm-next

Regards,
Chun-Kuang.

>
> Cc: Chun-Kuang Hu <chunkuang.hu@kernel.org>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> Cc: Matthias Brugger <matthias.bgg@gmail.com>
> Cc: linux-mediatek@lists.infradead.org
> Signed-off-by: Maíra Canal <mairacanal@riseup.net>
> ---
>  drivers/gpu/drm/mediatek/mtk_dpi.c  | 1 -
>  drivers/gpu/drm/mediatek/mtk_hdmi.c | 1 -
>  2 files changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/mediatek/mtk_dpi.c b/drivers/gpu/drm/mediatek/mtk_dpi.c
> index 630a4e301ef6..508a6d994e83 100644
> --- a/drivers/gpu/drm/mediatek/mtk_dpi.c
> +++ b/drivers/gpu/drm/mediatek/mtk_dpi.c
> @@ -11,7 +11,6 @@
>  #include <linux/media-bus-format.h>
>  #include <linux/of.h>
>  #include <linux/of_device.h>
> -#include <linux/of_gpio.h>
>  #include <linux/of_graph.h>
>  #include <linux/pinctrl/consumer.h>
>  #include <linux/platform_device.h>
> diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> index 3196189429bc..4c80b6896dc3 100644
> --- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
> +++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> @@ -16,7 +16,6 @@
>  #include <linux/mutex.h>
>  #include <linux/of_platform.h>
>  #include <linux/of.h>
> -#include <linux/of_gpio.h>
>  #include <linux/of_graph.h>
>  #include <linux/phy/phy.h>
>  #include <linux/platform_device.h>
> --
> 2.37.1
>

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

* Re: [PATCH 1/5] drm/bridge: anx7625: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
@ 2022-08-29 13:51   ` Robert Foss
  2023-04-24 11:16   ` Maíra Canal
  1 sibling, 0 replies; 12+ messages in thread
From: Robert Foss @ 2022-08-29 13:51 UTC (permalink / raw)
  To: Maíra Canal
  Cc: Jernej Skrabec, Neil Armstrong, David Airlie, Jonas Karlman,
	linux-kernel, dri-devel, Maxime Ripard, Andrzej Hajda,
	Laurent Pinchart

Hi Maira,

On Fri, 12 Aug 2022 at 22:58, Maíra Canal <mairacanal@riseup.net> wrote:
>
> This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop the include.
>
> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
> Cc: Neil Armstrong <narmstrong@baylibre.com>
> Cc: Robert Foss <robert.foss@linaro.org>
> Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
> Cc: Jonas Karlman <jonas@kwiboo.se>
> Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
> Signed-off-by: Maíra Canal <mairacanal@riseup.net>
> ---
>  drivers/gpu/drm/bridge/analogix/anx7625.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c b/drivers/gpu/drm/bridge/analogix/anx7625.c
> index 79fc7a50b497..d7d4ca1c8b30 100644
> --- a/drivers/gpu/drm/bridge/analogix/anx7625.c
> +++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
> @@ -17,7 +17,6 @@
>  #include <linux/types.h>
>  #include <linux/workqueue.h>
>
> -#include <linux/of_gpio.h>
>  #include <linux/of_graph.h>
>  #include <linux/of_platform.h>
>
> --
> 2.37.1
>

This cleanup looks good to me.

Reviewed-by: Robert Foss <robert.foss@linar.org>

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

* Re: [PATCH 4/5] drm/sti: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 4/5] drm/sti: " Maíra Canal
@ 2023-04-22 16:55   ` Alain Volmat
  2023-04-24 11:14   ` Maíra Canal
  1 sibling, 0 replies; 12+ messages in thread
From: Alain Volmat @ 2023-04-22 16:55 UTC (permalink / raw)
  To: Maíra Canal
  Cc: David Airlie, linux-kernel, dri-devel, Maxime Ripard,
	Alain Volmat, Alain Volmat

Hi Maira,

thanks for the patch.

On Fri, Aug 12, 2022 at 05:57:45PM -0300, Maíra Canal wrote:
> This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop this include.
> 
> Cc: Alain Volmat <alain.volmat@foss.st.com>
> Signed-off-by: Maíra Canal <mairacanal@riseup.net>
> ---
>  drivers/gpu/drm/sti/sti_dvo.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/sti/sti_dvo.c b/drivers/gpu/drm/sti/sti_dvo.c
> index b6ee8a82e656..0fc7710b054a 100644
> --- a/drivers/gpu/drm/sti/sti_dvo.c
> +++ b/drivers/gpu/drm/sti/sti_dvo.c
> @@ -8,7 +8,7 @@
>  #include <linux/component.h>
>  #include <linux/debugfs.h>
>  #include <linux/module.h>
> -#include <linux/of_gpio.h>
> +#include <linux/of.h>
>  #include <linux/platform_device.h>
>  
>  #include <drm/drm_atomic_helper.h>
> -- 

Acked-by: Alain Volmat <avolmat@me.com>

> 2.37.1
> 

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

* Re: [PATCH 4/5] drm/sti: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 4/5] drm/sti: " Maíra Canal
  2023-04-22 16:55   ` Alain Volmat
@ 2023-04-24 11:14   ` Maíra Canal
  1 sibling, 0 replies; 12+ messages in thread
From: Maíra Canal @ 2023-04-24 11:14 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Alain Volmat, linux-kernel, dri-devel

On 8/12/22 17:57, Maíra Canal wrote:
> This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop this include.
> 
> Cc: Alain Volmat <alain.volmat@foss.st.com>
> Signed-off-by: Maíra Canal <mairacanal@riseup.net>

Applied to drm/drm-misc (drm-misc-next).

Best Regards,
- Maíra Canal

> ---
>   drivers/gpu/drm/sti/sti_dvo.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/sti/sti_dvo.c b/drivers/gpu/drm/sti/sti_dvo.c
> index b6ee8a82e656..0fc7710b054a 100644
> --- a/drivers/gpu/drm/sti/sti_dvo.c
> +++ b/drivers/gpu/drm/sti/sti_dvo.c
> @@ -8,7 +8,7 @@
>   #include <linux/component.h>
>   #include <linux/debugfs.h>
>   #include <linux/module.h>
> -#include <linux/of_gpio.h>
> +#include <linux/of.h>
>   #include <linux/platform_device.h>
>   
>   #include <drm/drm_atomic_helper.h>

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

* Re: [PATCH 1/5] drm/bridge: anx7625: Drop of_gpio header
  2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
  2022-08-29 13:51   ` Robert Foss
@ 2023-04-24 11:16   ` Maíra Canal
  1 sibling, 0 replies; 12+ messages in thread
From: Maíra Canal @ 2023-04-24 11:16 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Maxime Ripard
  Cc: Jernej Skrabec, Neil Armstrong, dri-devel, Jonas Karlman,
	linux-kernel, Robert Foss, Laurent Pinchart, Andrzej Hajda

On 8/12/22 17:57, Maíra Canal wrote:
> This driver includes the deprecated OF GPIO header <linux/of_gpio.h>
> yet fail to use symbols from it, so drop the include.
> 
> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
> Cc: Neil Armstrong <narmstrong@baylibre.com>
> Cc: Robert Foss <robert.foss@linaro.org>
> Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
> Cc: Jonas Karlman <jonas@kwiboo.se>
> Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
> Signed-off-by: Maíra Canal <mairacanal@riseup.net>

Applied to drm/drm-misc (drm-misc-next).

Best Regards,
- Maíra Canal

> ---
>   drivers/gpu/drm/bridge/analogix/anx7625.c | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c b/drivers/gpu/drm/bridge/analogix/anx7625.c
> index 79fc7a50b497..d7d4ca1c8b30 100644
> --- a/drivers/gpu/drm/bridge/analogix/anx7625.c
> +++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
> @@ -17,7 +17,6 @@
>   #include <linux/types.h>
>   #include <linux/workqueue.h>
>   
> -#include <linux/of_gpio.h>
>   #include <linux/of_graph.h>
>   #include <linux/of_platform.h>
>   

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

end of thread, other threads:[~2023-04-24 11:16 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-12 20:57 [PATCH 0/5] Drop of_gpio header Maíra Canal
2022-08-12 20:57 ` [PATCH 1/5] drm/bridge: anx7625: " Maíra Canal
2022-08-29 13:51   ` Robert Foss
2023-04-24 11:16   ` Maíra Canal
2022-08-12 20:57 ` [PATCH 2/5] drm/mediatek: " Maíra Canal
2022-08-25 23:25   ` Chun-Kuang Hu
2022-08-12 20:57 ` [PATCH 3/5] drm/msm: " Maíra Canal
2022-08-12 20:57 ` [PATCH 4/5] drm/sti: " Maíra Canal
2023-04-22 16:55   ` Alain Volmat
2023-04-24 11:14   ` Maíra Canal
2022-08-12 20:57 ` [PATCH 5/5] drm/vc4: " Maíra Canal
2022-08-15  8:06   ` Maxime Ripard

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