Commit d173ce09 authored by Jiri Slaby's avatar Jiri Slaby Committed by Greg Kroah-Hartman

x86/entry/32: Fix ENDPROC of common_spurious

[ Upstream commit 1cbec37b ]

common_spurious is currently ENDed erroneously. common_interrupt is used
in its ENDPROC. So fix this mistake.

Found by my asm macros rewrite patchset.

Fixes: f8a8fe61 ("x86/irq: Seperate unused system vectors from spurious entry again")
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190709063402.19847-1-jslaby@suse.czSigned-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 466bdfc6
...@@ -1119,7 +1119,7 @@ common_spurious: ...@@ -1119,7 +1119,7 @@ common_spurious:
movl %esp, %eax movl %esp, %eax
call smp_spurious_interrupt call smp_spurious_interrupt
jmp ret_from_intr jmp ret_from_intr
ENDPROC(common_interrupt) ENDPROC(common_spurious)
#endif #endif
/* /*
......
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