diff options
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/Kconfig | 3 | ||||
-rw-r--r-- | arch/x86_64/kernel/Makefile | 3 | ||||
-rw-r--r-- | arch/x86_64/kernel/setup.c | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/arch/x86_64/Kconfig b/arch/x86_64/Kconfig index 1f4212605ef8..c2c68b902347 100644 --- a/arch/x86_64/Kconfig +++ b/arch/x86_64/Kconfig | |||
@@ -105,6 +105,7 @@ config X86_PC | |||
105 | 105 | ||
106 | config X86_VSMP | 106 | config X86_VSMP |
107 | bool "Support for ScaleMP vSMP" | 107 | bool "Support for ScaleMP vSMP" |
108 | depends on PCI | ||
108 | help | 109 | help |
109 | Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is | 110 | Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is |
110 | supposed to run on these EM64T-based machines. Only choose this option | 111 | supposed to run on these EM64T-based machines. Only choose this option |
@@ -291,7 +292,7 @@ config NUMA | |||
291 | 292 | ||
292 | config K8_NUMA | 293 | config K8_NUMA |
293 | bool "Old style AMD Opteron NUMA detection" | 294 | bool "Old style AMD Opteron NUMA detection" |
294 | depends on NUMA | 295 | depends on NUMA && PCI |
295 | default y | 296 | default y |
296 | help | 297 | help |
297 | Enable K8 NUMA node topology detection. You should say Y here if | 298 | Enable K8 NUMA node topology detection. You should say Y here if |
diff --git a/arch/x86_64/kernel/Makefile b/arch/x86_64/kernel/Makefile index 000e67e8f028..2466fbd035ee 100644 --- a/arch/x86_64/kernel/Makefile +++ b/arch/x86_64/kernel/Makefile | |||
@@ -8,7 +8,7 @@ obj-y := process.o signal.o entry.o traps.o irq.o \ | |||
8 | ptrace.o time.o ioport.o ldt.o setup.o i8259.o sys_x86_64.o \ | 8 | ptrace.o time.o ioport.o ldt.o setup.o i8259.o sys_x86_64.o \ |
9 | x8664_ksyms.o i387.o syscall.o vsyscall.o \ | 9 | x8664_ksyms.o i387.o syscall.o vsyscall.o \ |
10 | setup64.o bootflag.o e820.o reboot.o quirks.o i8237.o \ | 10 | setup64.o bootflag.o e820.o reboot.o quirks.o i8237.o \ |
11 | pci-dma.o pci-nommu.o alternative.o early-quirks.o | 11 | pci-dma.o pci-nommu.o alternative.o |
12 | 12 | ||
13 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 13 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
14 | obj-$(CONFIG_X86_MCE) += mce.o | 14 | obj-$(CONFIG_X86_MCE) += mce.o |
@@ -39,6 +39,7 @@ obj-$(CONFIG_K8_NB) += k8.o | |||
39 | obj-$(CONFIG_AUDIT) += audit.o | 39 | obj-$(CONFIG_AUDIT) += audit.o |
40 | 40 | ||
41 | obj-$(CONFIG_MODULES) += module.o | 41 | obj-$(CONFIG_MODULES) += module.o |
42 | obj-$(CONFIG_PCI) += early-quirks.o | ||
42 | 43 | ||
43 | obj-y += topology.o | 44 | obj-y += topology.o |
44 | obj-y += intel_cacheinfo.o | 45 | obj-y += intel_cacheinfo.o |
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c index 26524ce3b239..3d8309b1236e 100644 --- a/arch/x86_64/kernel/setup.c +++ b/arch/x86_64/kernel/setup.c | |||
@@ -493,7 +493,9 @@ void __init setup_arch(char **cmdline_p) | |||
493 | 493 | ||
494 | paging_init(); | 494 | paging_init(); |
495 | 495 | ||
496 | #ifdef CONFIG_PCI | ||
496 | early_quirks(); | 497 | early_quirks(); |
498 | #endif | ||
497 | 499 | ||
498 | /* | 500 | /* |
499 | * set this early, so we dont allocate cpu0 | 501 | * set this early, so we dont allocate cpu0 |