瀏覽代碼

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>
Thomas Gleixner 8 年之前
父節點
當前提交
ef1d4deab9
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      arch/x86/kernel/eisa.c

+ 1 - 0
arch/x86/kernel/eisa.c

@@ -5,6 +5,7 @@
  */
  */
 #include <linux/ioport.h>
 #include <linux/ioport.h>
 #include <linux/eisa.h>
 #include <linux/eisa.h>
+#include <linux/io.h>
 
 
 static __init int eisa_bus_probe(void)
 static __init int eisa_bus_probe(void)
 {
 {