aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2014-08-14 03:25:38 -0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2014-09-14 05:51:35 -0400
commit9aa59cacdf22de9127d147de9523c1a0f832da48 (patch)
tree3967837ae91ae49b3d6210cc06b75bd286430540
parent2ce7598c9a453e0acd0e07be7be3f5eb39608ebd (diff)
m68k/atari - stram: Add missing #include <linux/ioport.h>
If CONFIG_BLOCK=n: arch/m68k/atari/stram.c:44: error: variable ‘stram_pool’ has initializer but incomplete type arch/m68k/atari/stram.c:45: error: unknown field ‘name’ specified in initializer arch/m68k/atari/stram.c:46: warning: excess elements in struct initializer arch/m68k/atari/stram.c:46: warning: (near initialization for ‘stram_pool’) arch/m68k/atari/stram.c: In function ‘atari_stram_reserve_pages’: arch/m68k/atari/stram.c:97: error: invalid use of undefined type ‘struct resource’ ... Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
-rw-r--r--arch/m68k/atari/stram.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/m68k/atari/stram.c b/arch/m68k/atari/stram.c
index 5f8cb5a234d9..c83d66442612 100644
--- a/arch/m68k/atari/stram.c
+++ b/arch/m68k/atari/stram.c
@@ -21,6 +21,7 @@
21#include <linux/mount.h> 21#include <linux/mount.h>
22#include <linux/blkdev.h> 22#include <linux/blkdev.h>
23#include <linux/module.h> 23#include <linux/module.h>
24#include <linux/ioport.h>
24 25
25#include <asm/setup.h> 26#include <asm/setup.h>
26#include <asm/machdep.h> 27#include <asm/machdep.h>