diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2022-11-04 06:16:39 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-12-14 22:01:49 +0300 |
commit | 891bbadf1cf178eba8f2e3e175eabeee37a61ce8 (patch) | |
tree | 962b3966adc3e9740d54384d327ccdbd150eb686 | |
parent | 90a687d61b4812d8fc035a59659dc36359783f60 (diff) | |
download | linux-891bbadf1cf178eba8f2e3e175eabeee37a61ce8.tar.xz |
fbdev: omapfb: encoder-opa362: fix included headers
The driver has been switched to gpiod API, so it should include
gpio/consumer.h instead of gpio.h and of_gpio.h.
With of_gpio.h no longer included we need mod_devicetable.h for
of_device_id definition.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.c b/drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.c index ba7ed4039f8a..dd29dc5c77ec 100644 --- a/drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.c +++ b/drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.c @@ -11,11 +11,11 @@ * Author: Tomi Valkeinen <tomi.valkeinen@ti.com> */ -#include <linux/gpio.h> +#include <linux/gpio/consumer.h> #include <linux/module.h> +#include <linux/mod_devicetable.h> #include <linux/platform_device.h> #include <linux/slab.h> -#include <linux/of_gpio.h> #include <video/omapfb_dss.h> |