Skip to content

Commit

Permalink
x86: simplify x86_mpparse dependency check
Browse files Browse the repository at this point in the history
"Maciej W. Rozycki" <macro@linux-mips.org> said:

> Given X86_64 selects X86_LOCAL_APIC I am not sure the redundancy seen
>above does not actually obscure the logic behind...  I think:
>
>       depends on X86_LOCAL_APIC && !X86_VISWS
>
>would be clearer and get the same.

Suggested-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Len Brown <lenb@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Jul 8, 2008
1 parent c73d8dd commit bad48f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ if ACPI
config X86_MPPARSE
def_bool y
bool "Enable MPS table"
depends on ((X86_32 && (X86_LOCAL_APIC && !X86_VISWS)) || X86_64)
depends on X86_LOCAL_APIC && !X86_VISWS
help
For old smp systems that do not have proper acpi support. Newer systems
(esp with 64bit cpus) with acpi support, MADT and DSDT will override it
Expand All @@ -248,7 +248,7 @@ endif
if !ACPI
config X86_MPPARSE
def_bool y
depends on ((X86_32 && (X86_LOCAL_APIC && !X86_VISWS)) || X86_64)
depends on X86_LOCAL_APIC && !X86_VISWS
endif

choice
Expand Down

0 comments on commit bad48f4

Please sign in to comment.