Skip to content

Commit dc01a3b

Browse files
jmberg-intelrichardweinberger
authored andcommitted
um: Fix tag order in stub_32.h
"static void inline" is the wrong way around, fix that. Reported-by: kernel test robot <lkp@intel.com> Fixes: 9f0b480 ("um: rework userspace stubs to not hard-code stub location") Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Richard Weinberger <richard@nod.at>
1 parent d434405 commit dc01a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/um/shared/sysdep/stub_32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static inline void trap_myself(void)
7777
__asm("int3");
7878
}
7979

80-
static void inline remap_stack_and_trap(void)
80+
static inline void remap_stack_and_trap(void)
8181
{
8282
__asm__ volatile (
8383
"movl %%esp,%%ebx ;"

0 commit comments

Comments
 (0)