From: Johannes Berg Date: Tue, 23 Feb 2021 09:44:08 +0000 (+0100) Subject: um: Fix tag order in stub_32.h X-Git-Tag: accepted/tizen/unified/20230118.172025~7292^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc01a3b9db43abf95b801c9694980777a329e303;p=platform%2Fkernel%2Flinux-rpi.git um: Fix tag order in stub_32.h "static void inline" is the wrong way around, fix that. Reported-by: kernel test robot Fixes: 9f0b4807a44f ("um: rework userspace stubs to not hard-code stub location") Signed-off-by: Johannes Berg Signed-off-by: Richard Weinberger --- diff --git a/arch/x86/um/shared/sysdep/stub_32.h b/arch/x86/um/shared/sysdep/stub_32.h index c3891c1..b95db9d 100644 --- a/arch/x86/um/shared/sysdep/stub_32.h +++ b/arch/x86/um/shared/sysdep/stub_32.h @@ -77,7 +77,7 @@ static inline void trap_myself(void) __asm("int3"); } -static void inline remap_stack_and_trap(void) +static inline void remap_stack_and_trap(void) { __asm__ volatile ( "movl %%esp,%%ebx ;"