summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/qemu/qemu.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-05-11 13:02:03 -0400
committerTom Rini <trini@konsulko.com>2023-05-11 13:02:03 -0400
commiteaa9efafffaf87e3414db5d21face5e2dad105e4 (patch)
tree4b6fc541bf21bcd0dc2afa9b832963393e2bf22b /arch/x86/cpu/qemu/qemu.c
parent11910550b65e6072b9542d462c0aa93f4ca81836 (diff)
parent1781ec67f43ae6fcaec628831b09a587f5cab174 (diff)
Merge branch '2023-05-11-CONFIG_IS_ENABLED-vs-IS_ENABLED-cleanups' into next
- Bring in some of the clean-ups to use IS_ENABLED rather than CONFIG_IS_ENABLED to make the code less error-prone.
Diffstat (limited to 'arch/x86/cpu/qemu/qemu.c')
-rw-r--r--arch/x86/cpu/qemu/qemu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/qemu/qemu.c b/arch/x86/cpu/qemu/qemu.c
index e54082df7f9..274978c023b 100644
--- a/arch/x86/cpu/qemu/qemu.c
+++ b/arch/x86/cpu/qemu/qemu.c
@@ -97,7 +97,7 @@ static void qemu_chipset_init(void)
}
}
-#if !CONFIG_IS_ENABLED(SPL_X86_32BIT_INIT)
+#if CONFIG_IS_ENABLED(X86_32BIT_INIT)
int arch_cpu_init(void)
{
post_code(POST_CPU_INIT);