projects
/
platform
/
upstream
/
kernel-adaptation-pc.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
|
history
diff --git
a/arch/mips/kernel/genex.S
b/arch/mips/kernel/genex.S
index
aa18a8b
..
13f22d1
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)