diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2014-08-14 11:25:38 +0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2014-09-14 13:51:35 +0400 |
commit | 9aa59cacdf22de9127d147de9523c1a0f832da48 (patch) | |
tree | 3967837ae91ae49b3d6210cc06b75bd286430540 /arch/m68k | |
parent | 2ce7598c9a453e0acd0e07be7be3f5eb39608ebd (diff) | |
download | linux-9aa59cacdf22de9127d147de9523c1a0f832da48.tar.xz |
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>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/atari/stram.c | 1 |
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 @@ #include <linux/mount.h> #include <linux/blkdev.h> #include <linux/module.h> +#include <linux/ioport.h> #include <asm/setup.h> #include <asm/machdep.h> |