summaryrefslogtreecommitdiffstats
path: root/arch/x86/entry
diff options
context:
space:
mode:
authorJiri Slaby2019-07-09 08:34:02 +0200
committerThomas Gleixner2019-07-09 14:41:03 +0200
commit1cbec37b3f9cff074a67bef4fc34b30a09958a0a (patch)
tree8de8235f707023e9600be83785d4297313fa74cd /arch/x86/entry
parentRevert "x86/build: Move _etext to actual end of .text" (diff)
downloadkernel-qcow2-linux-1cbec37b3f9cff074a67bef4fc34b30a09958a0a.tar.gz
kernel-qcow2-linux-1cbec37b3f9cff074a67bef4fc34b30a09958a0a.tar.xz
kernel-qcow2-linux-1cbec37b3f9cff074a67bef4fc34b30a09958a0a.zip
x86/entry/32: Fix ENDPROC of common_spurious
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: f8a8fe61fec8 ("x86/irq: Seperate unused system vectors from spurious entry again") Signed-off-by: Jiri Slaby <jslaby@suse.cz> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20190709063402.19847-1-jslaby@suse.cz
Diffstat (limited to 'arch/x86/entry')
-rw-r--r--arch/x86/entry/entry_32.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S
index 1285e5abf669..90b473297299 100644
--- a/arch/x86/entry/entry_32.S
+++ b/arch/x86/entry/entry_32.S
@@ -1189,7 +1189,7 @@ common_spurious:
movl %esp, %eax
call smp_spurious_interrupt
jmp ret_from_intr
-ENDPROC(common_interrupt)
+ENDPROC(common_spurious)
#endif
/*