Commit 53fa6645251727856d3554d64583fef59e6f1651

Authored by Adrian Bunk
Committed by Linus Torvalds
1 parent c1206a2c6d

lib/ioremap.c should #include <linux/io.h>

Every file should include the headers containing the prototypes for its global
functions (in this case ioremap_page_range()).

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -8,6 +8,7 @@
8 8 #include <linux/vmalloc.h>
9 9 #include <linux/mm.h>
10 10 #include <linux/sched.h>
  11 +#include <linux/io.h>
11 12 #include <asm/cacheflush.h>
12 13 #include <asm/pgtable.h>
13 14