diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-04-18 22:32:24 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-04-26 14:46:51 -0400 |
commit | bc856a62c8036330cb2d95e24756285c6d8ecba2 (patch) | |
tree | d4ad7cc7a5e5205e73242a21e4282bcf1b47c656 | |
parent | cd0a2bfb77a3edeecd652081e0b1a163d3b0696b (diff) | |
download | linux-3.10-bc856a62c8036330cb2d95e24756285c6d8ecba2.tar.gz linux-3.10-bc856a62c8036330cb2d95e24756285c6d8ecba2.tar.bz2 linux-3.10-bc856a62c8036330cb2d95e24756285c6d8ecba2.zip |
blackfin: fix compile error in bfin-lq035q1-fb.c
This file has an implicit dependency on GPIO stuff, showing
up as the following build failure:
drivers/video/bfin-lq035q1-fb.c:369:6: error: 'GPIOF_OUT_INIT_LOW' undeclared
Other more global bfin build issues prevent an automated bisect, but
it really doesn't matter - simply add in the appropriate header.
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | drivers/video/bfin-lq035q1-fb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/bfin-lq035q1-fb.c b/drivers/video/bfin-lq035q1-fb.c index 86922ac8441..353c02fe8a9 100644 --- a/drivers/video/bfin-lq035q1-fb.c +++ b/drivers/video/bfin-lq035q1-fb.c @@ -13,6 +13,7 @@ #include <linux/errno.h> #include <linux/string.h> #include <linux/fb.h> +#include <linux/gpio.h> #include <linux/slab.h> #include <linux/init.h> #include <linux/types.h> |