Commit 284be28565efe262a81972d12e9264d4824a4ced

Authored by Mark Brown
Committed by Will Deacon
1 parent c7c52e4829

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>

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

arch/arm64/mm/dump.c
... ... @@ -15,6 +15,7 @@
15 15 */
16 16 #include <linux/debugfs.h>
17 17 #include <linux/fs.h>
  18 +#include <linux/io.h>
18 19 #include <linux/mm.h>
19 20 #include <linux/sched.h>
20 21 #include <linux/seq_file.h>