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>

+1
+1
arch/x86/kernel/eisa.c
··· 5 */ 6 #include <linux/ioport.h> 7 #include <linux/eisa.h> 8 9 static __init int eisa_bus_probe(void) 10 {
··· 5 */ 6 #include <linux/ioport.h> 7 #include <linux/eisa.h> 8 + #include <linux/io.h> 9 10 static __init int eisa_bus_probe(void) 11 {