summaryrefslogtreecommitdiffstats
path: root/arch/mips/math-emu/cp1emu.c
diff options
context:
space:
mode:
authorPaul Burton2016-07-04 20:35:08 +0200
committerPaolo Bonzini2016-07-05 16:09:07 +0200
commit1b492600068d5fbd033196ce2bdb28735a23747e (patch)
tree92a555be75e0e50c6c669413d7ac44e5ed7056e8 /arch/mips/math-emu/cp1emu.c
parentMIPS: inst.h: Rename b{eq,ne}zcji[al]c_op to pop{6,7}6_op (diff)
downloadkernel-qcow2-linux-1b492600068d5fbd033196ce2bdb28735a23747e.tar.gz
kernel-qcow2-linux-1b492600068d5fbd033196ce2bdb28735a23747e.tar.xz
kernel-qcow2-linux-1b492600068d5fbd033196ce2bdb28735a23747e.zip
MIPS: inst.h: Rename cbcond{0,1}_op to pop{1,3}0_op
The opcodes currently defined in inst.h as cbcond0_op & cbcond1_op are actually defined in the MIPS base instruction set manuals as pop10 & pop30 respectively. Rename them as such, for consistency with the documentation. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Signed-off-by: James Hogan <james.hogan@imgtec.com> Acked-by: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/mips/math-emu/cp1emu.c')
-rw-r--r--arch/mips/math-emu/cp1emu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/math-emu/cp1emu.c b/arch/mips/math-emu/cp1emu.c
index 1bbf16581f19..6dc07fba187f 100644
--- a/arch/mips/math-emu/cp1emu.c
+++ b/arch/mips/math-emu/cp1emu.c
@@ -627,8 +627,8 @@ static int isBranchInstr(struct pt_regs *regs, struct mm_decoded_insn dec_insn,
dec_insn.pc_inc +
dec_insn.next_pc_inc;
return 1;
- case cbcond0_op:
- case cbcond1_op:
+ case pop10_op:
+ case pop30_op:
if (!cpu_has_mips_r6)
break;
if (insn.i_format.rt && !insn.i_format.rs)