From 53b1929e83b56ecc97989b5656896f1886434672 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Wed, 10 May 2023 13:28:42 -0600 Subject: Kconfig: Get rid of named choice LAPIC_ACCESS_MODE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Change-Id: I70628007319a0ee2830dc4c9cb3b635d8190264b Reviewed-on: https://review.coreboot.org/c/coreboot/+/75133 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- src/cpu/x86/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index c85eace851..1e1b2ac157 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -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 -- cgit v1.2.3