diff options
author | Paul Burton <paul.burton@imgtec.com> | 2014-01-09 15:30:37 +0000 |
---|---|---|
committer | Paul Burton <paul.burton@imgtec.com> | 2014-05-28 16:20:24 +0100 |
commit | f263839ab59a7f4beb74fc9a7ce0234b62ab2b52 (patch) | |
tree | eb0078cd7e2f012f4c33d643b73d79a5ae1c3251 /arch/mips | |
parent | 7ed82ad12c1553a40a5dd7e9c0b34a80c2c02e47 (diff) | |
download | op-kernel-dev-f263839ab59a7f4beb74fc9a7ce0234b62ab2b52.zip op-kernel-dev-f263839ab59a7f4beb74fc9a7ce0234b62ab2b52.tar.gz |
MIPS: inst.h: define microMIPS wait op
The opcode for the wait instruction within POOL32AXf was missing. This
patch adds it for use by a subsequent patch.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/uapi/asm/inst.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/uapi/asm/inst.h b/arch/mips/include/uapi/asm/inst.h index 89e9155..e6e7fe3 100644 --- a/arch/mips/include/uapi/asm/inst.h +++ b/arch/mips/include/uapi/asm/inst.h @@ -305,6 +305,7 @@ enum mm_32axf_minor_op { mm_jalrshb_op = 0x17c, mm_sync_op = 0x1ad, mm_syscall_op = 0x22d, + mm_wait_op = 0x24d, mm_eret_op = 0x3cd, }; |