[PATCH 1/4] drm/omap: Fix missing includes
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Tue Apr 19 08:32:24 UTC 2016
Hi Tomi,
On Tuesday 19 Apr 2016 08:36:01 Tomi Valkeinen wrote:
> On 19/04/16 05:17, Laurent Pinchart wrote:
> > On Monday 18 Apr 2016 18:42:11 Tomi Valkeinen wrote:
> >> With certain kernel config options many omapdrm files fail to compile
> >> due to missing include of linux/gpio/consumer.h and linux/of.h.
> >>
> >> This patch adds those includes.
> >>
> >> Signed-off-by: Tomi Valkeinen <tomi.valkeinen at ti.com>
> >> Reported-by: Dan Murphy <dmurphy at ti.com>
> >> ---
> >>
> >> drivers/gpu/drm/omapdrm/displays/encoder-opa362.c | 1 +
> >> drivers/gpu/drm/omapdrm/displays/panel-dpi.c | 1 +
> >> drivers/gpu/drm/omapdrm/displays/panel-lgphilips-lb035q02.c | 1 +
> >> drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c | 1 +
> >> drivers/gpu/drm/omapdrm/dss/hdmi4.c | 1 +
> >> drivers/gpu/drm/omapdrm/dss/hdmi5.c | 1 +
> >> 6 files changed, 6 insertions(+)
> >>
> >> diff --git a/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> >> b/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c index
> >> 8c246c213e06..9f06a87e80c4 100644
> >> --- a/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> >> +++ b/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> >> @@ -15,6 +15,7 @@
> >>
> >> */
> >>
> >> #include <linux/gpio.h>
> >
> > This driver uses the gpiod API only, you can remove gpio.h and of_gpio.h.
>
> True. I don't want to mix fixes and cleanups, so I made a new patch for
> that:
Given that you touch the two files in your "Fix missing includes" patch that
seems a bit overkill to me, I would have squashed the two together, but it
doesn't matter too much.
> commit cdde6dcbf9fa0c5eadb42aac956a8ec3676aafb0 (HEAD -> 4.7/omapdrm)
> Author: Tomi Valkeinen <tomi.valkeinen at ti.com>
> Date: Tue Apr 19 08:33:25 2016 +0300
>
> drm/omap: remove unneeded gpio includes
>
> encoder-opa362.c and panel-sharp-ls037v7dw01.c do not use the legacy
> GPIO API, so we can remove the including of gpio.h and of_gpio.h.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen at ti.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
>
> diff --git a/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> b/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> index 9f06a87e80c4..e9b62a1bb5c5 100644
> --- a/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> +++ b/drivers/gpu/drm/omapdrm/displays/encoder-opa362.c
> @@ -14,12 +14,10 @@
> * the Free Software Foundation.
> */
>
> -#include <linux/gpio.h>
> #include <linux/gpio/consumer.h>
> #include <linux/module.h>
> #include <linux/platform_device.h>
> #include <linux/slab.h>
> -#include <linux/of_gpio.h>
>
> #include <video/omapdss.h>
>
> diff --git a/drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c
> b/drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c
> index 1de5146c83c0..bbf529f15971 100644
> --- a/drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c
> +++ b/drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c
> @@ -10,11 +10,9 @@
> */
>
> #include <linux/delay.h>
> -#include <linux/gpio.h>
> #include <linux/gpio/consumer.h>
> #include <linux/module.h>
> #include <linux/of.h>
> -#include <linux/of_gpio.h>
> #include <linux/platform_device.h>
> #include <linux/slab.h>
> #include <linux/regulator/consumer.h>
--
Regards,
Laurent Pinchart
More information about the dri-devel
mailing list