diff options
author | H Hartley Sweeten <[email protected]> | 2013-03-22 15:04:45 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2013-03-22 16:41:20 -0700 |
commit | e66b05873a7a76afc569da6382509471cba8d5ff (patch) | |
tree | ae77244f8dd8cde055c3b0a0957970b0895cefe8 | |
parent | 925e8ea6bca2c9a590565634b27768d7042e089f (diff) |
drivers/video/ep93xx-fb.c: include <linux/io.h> for devm_ioremap()
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 <[email protected]>
Cc: Florian Tobias Schandinat <[email protected]>
Acked-by: Ryan Mallon <[email protected]>
Cc: Damien Cassou <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-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 3f2519d30715..e06cd5d90c97 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> |