mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 13:13:57 +08:00
video: omapfb: fix missing #includes
The omapfb driver fails to build after commit23c35f48f5
("pinctrl: remove include file from <linux/device.h>") because it relies on the <linux/pinctrl/consumer.h> and <linux/seq_file.h> being pulled in by the <linux/device.h> header implicitly. Include these headers explicitly to avoid the build failures. Fixes:23c35f48f5
("pinctrl: remove include file from <linux/device.h>") Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Tested-by: Tony Lindgren <tony@atomide.com> [b.zolnierkie: fix include order and patch description] Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
f1517df870
commit
b9058afcd6
@ -40,6 +40,7 @@
|
||||
#include <linux/regulator/consumer.h>
|
||||
#include <linux/suspend.h>
|
||||
#include <linux/component.h>
|
||||
#include <linux/pinctrl/consumer.h>
|
||||
|
||||
#include <video/omapfb_dss.h>
|
||||
|
||||
|
@ -13,6 +13,8 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/seq_file.h>
|
||||
|
||||
#include <video/omapfb_dss.h>
|
||||
|
||||
#include "dss.h"
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/seq_file.h>
|
||||
|
||||
#include <video/omapfb_dss.h>
|
||||
|
||||
|
@ -14,6 +14,8 @@
|
||||
#include <linux/err.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/seq_file.h>
|
||||
|
||||
#include <video/omapfb_dss.h>
|
||||
|
||||
#include "dss.h"
|
||||
|
Loading…
Reference in New Issue
Block a user