Skip to content

Commit

Permalink
UPSTREAM: arm64: dump: Fix implicit inclusion of definition for PCI_I…
Browse files Browse the repository at this point in the history
…OBASE

commit 284be28 upstream.

Since c9465b4 (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 <[email protected]>
Signed-off-by: Will Deacon <[email protected]>
Change-Id: I156b2208eea4f7f81a4ed7aae9062b7e2ef5b6c7
Signed-off-by: Amit Pundir <[email protected]>
  • Loading branch information
broonie authored and Flex1911 committed Oct 15, 2018
1 parent ac6a2b7 commit 7e92f96
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arch/arm64/mm/dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 7e92f96

Please sign in to comment.