diff options
author | Mark Brown <broonie@kernel.org> | 2015-01-22 20:52:10 +0000 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-01-23 10:47:42 +0000 |
commit | 284be28565efe262a81972d12e9264d4824a4ced (patch) | |
tree | f70c235d251ae0a855497e6ebf7f5d4ed93292e7 | |
parent | c7c52e482975cb9c390471df35ab85e86dbc5916 (diff) | |
download | linux-284be28565efe262a81972d12e9264d4824a4ced.tar.bz2 |
arm64: dump: Fix implicit inclusion of definition for PCI_IOBASE
Since c9465b4ec37a68425 (arm64: add support to dump the kernel page tables)
allmodconfig has failed to build on arm64 as a result of:
../arch/arm64/mm/dump.c:55:20: error: 'PCI_IOBASE' undeclared here (not in a function)
Fix this by explicitly including io.h to ensure that a definition is
present.
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r-- | arch/arm64/mm/dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/mm/dump.c b/arch/arm64/mm/dump.c index cf33f33333cc..d54dc9ac4b70 100644 --- a/arch/arm64/mm/dump.c +++ b/arch/arm64/mm/dump.c @@ -15,6 +15,7 @@ */ #include <linux/debugfs.h> #include <linux/fs.h> +#include <linux/io.h> #include <linux/mm.h> #include <linux/sched.h> #include <linux/seq_file.h> |