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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ;"