From: Borislav Petkov (AMD) Date: Thu, 4 Apr 2024 10:04:25 +0000 (+0200) Subject: x86/alternatives: Remove a superfluous newline in _static_cpu_has() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a0c8cf9780359376496bbd6d2be1343badf68af7;p=users%2Fdwmw2%2Flinux.git x86/alternatives: Remove a superfluous newline in _static_cpu_has() No functional changes. Signed-off-by: Borislav Petkov (AMD) Signed-off-by: Ingo Molnar Signed-off-by: Borislav Petkov (AMD) Link: https://lore.kernel.org/r/20240327154317.29909-2-bp@alien8.de --- diff --git a/arch/x86/include/asm/cpufeature.h b/arch/x86/include/asm/cpufeature.h index daae5c6e7d0ed..cd90ceff6d2fd 100644 --- a/arch/x86/include/asm/cpufeature.h +++ b/arch/x86/include/asm/cpufeature.h @@ -168,8 +168,7 @@ extern void clear_cpu_cap(struct cpuinfo_x86 *c, unsigned int bit); */ static __always_inline bool _static_cpu_has(u16 bit) { - asm goto( - ALTERNATIVE_TERNARY("jmp 6f", %c[feature], "", "jmp %l[t_no]") + asm goto(ALTERNATIVE_TERNARY("jmp 6f", %c[feature], "", "jmp %l[t_no]") ".pushsection .altinstr_aux,\"ax\"\n" "6:\n" " testb %[bitnum], %a[cap_byte]\n"