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: 9f0b4807a4
("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>
This commit is contained in:
parent
d434405aaa
commit
dc01a3b9db
|
@ -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 ;"
|
||||
|
|
Loading…
Reference in New Issue