* [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one
@ 2024-03-04 17:51 Andy Shevchenko
2024-03-04 18:13 ` Dmitry Baryshkov
2024-04-08 15:52 ` Dmitry Baryshkov
0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2024-03-04 17:51 UTC (permalink / raw)
To: Dmitry Baryshkov, linux-arm-msm, dri-devel, freedreno, linux-kernel
Cc: Rob Clark, Abhinav Kumar, Sean Paul, Marijn Suijten,
David Airlie, Daniel Vetter, Andy Shevchenko
of_gpio.h is deprecated and subject to remove.
The driver doesn't use it directly, replace it
with what is really being used.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpu/drm/msm/hdmi/hdmi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdmi.c
index c8ebd75176bb..24abcb7254cc 100644
--- a/drivers/gpu/drm/msm/hdmi/hdmi.c
+++ b/drivers/gpu/drm/msm/hdmi/hdmi.c
@@ -5,8 +5,8 @@
* Author: Rob Clark <robdclark@gmail.com>
*/
+#include <linux/gpio/consumer.h>
#include <linux/of_irq.h>
-#include <linux/of_gpio.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
--
2.43.0.rc1.1.gbec44491f096
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one
2024-03-04 17:51 [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one Andy Shevchenko
@ 2024-03-04 18:13 ` Dmitry Baryshkov
2024-04-08 15:52 ` Dmitry Baryshkov
1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Baryshkov @ 2024-03-04 18:13 UTC (permalink / raw)
To: Andy Shevchenko
Cc: linux-arm-msm, dri-devel, freedreno, linux-kernel, Rob Clark,
Abhinav Kumar, Sean Paul, Marijn Suijten, David Airlie,
Daniel Vetter
On Mon, 4 Mar 2024 at 19:51, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> of_gpio.h is deprecated and subject to remove.
> The driver doesn't use it directly, replace it
> with what is really being used.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
> drivers/gpu/drm/msm/hdmi/hdmi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdmi.c
> index c8ebd75176bb..24abcb7254cc 100644
> --- a/drivers/gpu/drm/msm/hdmi/hdmi.c
> +++ b/drivers/gpu/drm/msm/hdmi/hdmi.c
> @@ -5,8 +5,8 @@
> * Author: Rob Clark <robdclark@gmail.com>
> */
>
> +#include <linux/gpio/consumer.h>
> #include <linux/of_irq.h>
> -#include <linux/of_gpio.h>
> #include <linux/of_platform.h>
> #include <linux/platform_device.h>
>
> --
> 2.43.0.rc1.1.gbec44491f096
>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one
2024-03-04 17:51 [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one Andy Shevchenko
2024-03-04 18:13 ` Dmitry Baryshkov
@ 2024-04-08 15:52 ` Dmitry Baryshkov
1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Baryshkov @ 2024-04-08 15:52 UTC (permalink / raw)
To: Andy Shevchenko
Cc: linux-arm-msm, dri-devel, freedreno, linux-kernel, Rob Clark,
Abhinav Kumar, Sean Paul, Marijn Suijten, David Airlie,
Daniel Vetter
On Mon, 4 Mar 2024 at 19:51, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> of_gpio.h is deprecated and subject to remove.
> The driver doesn't use it directly, replace it
> with what is really being used.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> drivers/gpu/drm/msm/hdmi/hdmi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdmi.c
> index c8ebd75176bb..24abcb7254cc 100644
> --- a/drivers/gpu/drm/msm/hdmi/hdmi.c
> +++ b/drivers/gpu/drm/msm/hdmi/hdmi.c
> @@ -5,8 +5,8 @@
> * Author: Rob Clark <robdclark@gmail.com>
> */
>
> +#include <linux/gpio/consumer.h>
> #include <linux/of_irq.h>
> -#include <linux/of_gpio.h>
> #include <linux/of_platform.h>
> #include <linux/platform_device.h>
>
> --
> 2.43.0.rc1.1.gbec44491f096
>
First one didn't reach the PW, let's try again:
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-04-08 15:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-04 17:51 [PATCH v1 1/1] drm/msm/hdmi: Replace of_gpio.h by proper one Andy Shevchenko
2024-03-04 18:13 ` Dmitry Baryshkov
2024-04-08 15:52 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®