Commit dc01a3b9 authored by Johannes Berg's avatar Johannes Berg Committed by Richard Weinberger

um: Fix tag order in stub_32.h

"static void inline" is the wrong way around, fix that.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Fixes: 9f0b4807 ("um: rework userspace stubs to not hard-code stub location")
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent d434405a
......@@ -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 ;"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment