diff options
author | Arnd Bergmann <[email protected]> | 2013-02-21 16:42:14 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2013-02-21 17:22:17 -0800 |
commit | 24cb87a761284407007984416e44e7d819cb0efd (patch) | |
tree | 1e90e68d3ec094e9acd14dfbaee8a7cdebf41ad2 | |
parent | d2e8bae6d72fa139fe7da7739c30b81c4122866f (diff) |
fb: mmp: include linux/platform_device.h
Commit 16559ae48c76 ("kgdb: remove #include <linux/serial_8250.h> from
kgdb.h") changes the kgdb.h file so that drivers including it do not
implicitly include linux/platform_device.h. The mmp framebuffer driver
is new, so Greg did not have a chance to fix it up when introducing his
change.
Signed-off-by: Arnd Bergmann <[email protected]>
Cc: Zhou Zhu <[email protected]>
Cc: Lisa Du <[email protected]>
Cc: Guoqing Li <[email protected]>
Acked-by: Haojian Zhuang <[email protected]>
Cc: Florian Tobias Schandinat <[email protected]>
Cc: Greg KH <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/video/mmp/fb/mmpfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/mmp/fb/mmpfb.c b/drivers/video/mmp/fb/mmpfb.c index f34a3a907f1b..6d1fa96c5cc3 100644 --- a/drivers/video/mmp/fb/mmpfb.c +++ b/drivers/video/mmp/fb/mmpfb.c @@ -21,6 +21,7 @@ */ #include <linux/module.h> #include <linux/dma-mapping.h> +#include <linux/platform_device.h> #include "mmpfb.h" static int var_to_pixfmt(struct fb_var_screeninfo *var) |