From ebab808eb1bb8f24c7d0dd41b956e48cb1824b81 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Mon, 6 May 2024 14:53:17 +0200 Subject: [PATCH] x86/platform: correct #undef in compat checking MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A stray 'p' was there, rendering the #undef ineffectual. Signed-off-by: Jan Beulich Acked-by: Roger Pau Monné --- xen/arch/x86/x86_64/platform_hypercall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/x86_64/platform_hypercall.c b/xen/arch/x86/x86_64/platform_hypercall.c index 99440f4076..347f5d6533 100644 --- a/xen/arch/x86/x86_64/platform_hypercall.c +++ b/xen/arch/x86/x86_64/platform_hypercall.c @@ -30,7 +30,7 @@ CHECK_pf_pcpu_version; #define xen_pf_ucode_revision xenpf_ucode_revision CHECK_pf_ucode_revision; -#undef xen_pf_pucode_revision +#undef xen_pf_ucode_revision #define xen_pf_enter_acpi_sleep xenpf_enter_acpi_sleep CHECK_pf_enter_acpi_sleep; -- 2.39.5