Kconfig: Get rid of named choice LAPIC_ACCESS_MODE

The named choice isn't needed here, so get rid of it. This fixes the
build notice:

build/auto.conf:notice: override:reassigning to symbol LAPIC_ACCESS_MODE

Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I70628007319a0ee2830dc4c9cb3b635d8190264b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75133
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Martin Roth 2023-05-10 13:28:42 -06:00 committed by Felix Singer
parent 1d95800e32
commit 53b1929e83
1 changed files with 4 additions and 4 deletions

View File

@ -28,19 +28,19 @@ config X86_SMM_SKIP_RELOCATION_HANDLER
config DEFAULT_X2APIC
def_bool n
help
Allow SoC code to set LAPIC_ACCESS_MODE to X2APIC.
Allow SoC code to set LAPIC access mode to X2APIC.
config DEFAULT_X2APIC_RUNTIME
def_bool n
help
Allow SoC code to set LAPIC_ACCESS_MODE to X2APIC_RUNTIME.
Allow SoC code to set LAPIC access mode to X2APIC_RUNTIME.
config DEFAULT_X2APIC_LATE_WORKAROUND
def_bool n
help
Allow SoC code to set LAPIC_ACCESS_MODE to X2APIC_LATE_WORKAROUND.
Allow SoC code to set LAPIC access mode to X2APIC_LATE_WORKAROUND.
choice LAPIC_ACCESS_MODE
choice
prompt "APIC operation mode"
default X2APIC_ONLY if DEFAULT_X2APIC
default X2APIC_RUNTIME if DEFAULT_X2APIC_RUNTIME