projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3f749c
)
[MIPS] Remove stray .set mips3 resulting in 64-bit instruction in 32-bit kernels.
author
Ralf Baechle
<ralf@linux-mips.org>
Mon, 9 Jan 2006 20:09:36 +0000
(20:09 +0000)
committer
Ralf Baechle
<ralf@linux-mips.org>
Tue, 7 Feb 2006 13:30:21 +0000
(13:30 +0000)
Only the NMI handler was affected so this is a low impact bug.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/genex.S
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/kernel/genex.S
b/arch/mips/kernel/genex.S
index aa18a8b7b38086e091956422a7deb0f935c6de29..13f22d1d0e8b7fe119ca0294e257567bf693359a 100644
(file)
--- a/
arch/mips/kernel/genex.S
+++ b/
arch/mips/kernel/genex.S
@@
-233,11
+233,11
@@
NESTED(except_vec_nmi, 0, sp)
NESTED(nmi_handler, PT_SIZE, sp)
.set push
.set noat
- .set mips3
SAVE_ALL
move a0, sp
jal nmi_exception_handler
RESTORE_ALL
+ .set mips3
eret
.set pop
END(nmi_handler)