Skip to content

Commit

Permalink
x86/Voyager: remove APIC/IO-APIC Kbuild quirk
Browse files Browse the repository at this point in the history
The lapic/ioapic code properly auto-detects and is safe to run on CPUs that
have no local APIC. (or which have their lapic turned off in the hardware)

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jan 29, 2009
1 parent c3e6a20 commit 7cd9236
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/x86/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ source "kernel/Kconfig.preempt"

config X86_UP_APIC
bool "Local APIC support on uniprocessors"
depends on X86_32 && !SMP && !(X86_VOYAGER || X86_GENERICARCH)
depends on X86_32 && !SMP && !X86_GENERICARCH
help
A local APIC (Advanced Programmable Interrupt Controller) is an
integrated interrupt controller in the CPU. If you have a single-CPU
Expand All @@ -667,11 +667,11 @@ config X86_UP_IOAPIC

config X86_LOCAL_APIC
def_bool y
depends on X86_64 || (X86_32 && (X86_UP_APIC || (SMP && !X86_VOYAGER) || X86_GENERICARCH))
depends on X86_64 || SMP || X86_GENERICARCH || X86_UP_APIC

config X86_IO_APIC
def_bool y
depends on X86_64 || (X86_32 && (X86_UP_IOAPIC || (SMP && !X86_VOYAGER) || X86_GENERICARCH))
depends on X86_64 || SMP || X86_GENERICARCH || X86_UP_APIC

config X86_VISWS_APIC
def_bool y
Expand Down

0 comments on commit 7cd9236

Please sign in to comment.