浏览代码

ACPI: prevent build failure when CONFIG_X86_NUMAQ=y

...by disabling CONFIG_ACPI when CONFIG_X86_NUMAQ=y

otherwise arch/i386/pci/Makefile forgets
that it needs to build acpi.o

drivers/built-in.o: In function `acpi_pci_root_add':
pci_root.c:(.text+0x45ec4): undefined reference to `pci_acpi_scan_root'

Signed-off-by: Len Brown <len.brown@intel.com>
Len Brown 18 年之前
父节点
当前提交
db50342205
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/acpi/Kconfig

+ 1 - 0
drivers/acpi/Kconfig

@@ -3,6 +3,7 @@
 #
 #
 
 
 menu "ACPI (Advanced Configuration and Power Interface) Support"
 menu "ACPI (Advanced Configuration and Power Interface) Support"
+	depends on !X86_NUMAQ
 	depends on !X86_VISWS
 	depends on !X86_VISWS
 	depends on !IA64_HP_SIM
 	depends on !IA64_HP_SIM
 	depends on IA64 || X86
 	depends on IA64 || X86