diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2017-08-31 20:08:16 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-08-31 21:34:48 +0200 |
commit | ef1d4deab953ecb1dfcf9f167043bda8b3f14a11 (patch) | |
tree | 64fefce2e9edf07f9232be505b29755b1c6242db /arch/x86/kernel | |
parent | 04b5de3a8f54fad8bb838827de85381bc6a5bc61 (diff) |
x86/eisa: Add missing include
The seperation of the EISA init missed to include linux/io.h which breaks
the build with some special configurations.
Reported-by: Ingo Molnar <mingo@kernel.org>
Fixes: f7eaf6e00fd5 ("x86/boot: Move EISA setup to a separate file")
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/eisa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/eisa.c b/arch/x86/kernel/eisa.c index 881f9236ebff..f260e452e4f8 100644 --- a/arch/x86/kernel/eisa.c +++ b/arch/x86/kernel/eisa.c @@ -5,6 +5,7 @@ */ #include <linux/ioport.h> #include <linux/eisa.h> +#include <linux/io.h> static __init int eisa_bus_probe(void) { |