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>
This commit is contained in:
parent
90a687d61b
commit
891bbadf1c
|
@ -11,11 +11,11 @@
|
||||||
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/gpio.h>
|
#include <linux/gpio/consumer.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/mod_devicetable.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/of_gpio.h>
|
|
||||||
|
|
||||||
#include <video/omapfb_dss.h>
|
#include <video/omapfb_dss.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue