diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2013-03-22 22:04:45 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-28 19:17:48 (GMT) |
commit | 463675facf738213758baf2fb501c446274407b9 (patch) | |
tree | db94bb870d83a3bb3c2ab714e2c8ab555c1cb4d5 | |
parent | 75252a3daf52e20fd00116bb8210a0b933260ffa (diff) | |
download | linux-fsl-qoriq-463675facf738213758baf2fb501c446274407b9.tar.xz |
drivers/video/ep93xx-fb.c: include <linux/io.h> for devm_ioremap()
commit e66b05873a7a76afc569da6382509471cba8d5ff upstream.
Commit be8678149701 ("drivers/video/ep93xx-fb.c: use devm_ functions")
introduced a build error:
drivers/video/ep93xx-fb.c: In function 'ep93xxfb_probe':
drivers/video/ep93xx-fb.c:532: error: implicit declaration of function 'devm_ioremap'
drivers/video/ep93xx-fb.c:533: warning: assignment makes pointer from integer without a cast
Include <linux/io.h> to pickup the declaration of 'devm_ioremap'.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: Ryan Mallon <rmallon@gmail.com>
Cc: Damien Cassou <damien.cassou@lifl.fr>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/video/ep93xx-fb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/ep93xx-fb.c b/drivers/video/ep93xx-fb.c index 3f2519d..e06cd5d 100644 --- a/drivers/video/ep93xx-fb.c +++ b/drivers/video/ep93xx-fb.c @@ -23,6 +23,7 @@ #include <linux/slab.h> #include <linux/clk.h> #include <linux/fb.h> +#include <linux/io.h> #include <linux/platform_data/video-ep93xx.h> |