From: Wei Liu Date: Tue, 11 Dec 2018 11:55:15 +0000 (+0000) Subject: x86: remove out label in spurious_interrupt X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2768 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=31b5e595c4b65a7d04e9d8ac38b1b5bcb9bf89d1;p=xen.git x86: remove out label in spurious_interrupt The out label is followed by a semicolon only. Use return directly. Signed-off-by: Wei Liu Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/apic.c b/xen/arch/x86/apic.c index 9db87f4f0e..2a2432619e 100644 --- a/xen/arch/x86/apic.c +++ b/xen/arch/x86/apic.c @@ -1408,15 +1408,13 @@ void spurious_interrupt(struct cpu_user_regs *regs) if (this_cpu(state_dump_pending)) { this_cpu(state_dump_pending) = false; dump_execstate(regs); - goto out; + return; } } /* see sw-dev-man vol 3, chapter 7.4.13.5 */ printk(KERN_INFO "spurious APIC interrupt on CPU#%d, should " "never happen.\n", smp_processor_id()); - -out: ; } /*