diff options
author | Thiemo Seufer <ths@networkno.de> | 2007-09-05 07:11:22 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-09-11 14:03:26 -0400 |
commit | d6698a2cd6ba23f5f73b0115c277dca8341af4a0 (patch) | |
tree | 08bf5dcf65ab4c0f78d42691537810dcdcf24679 /arch/mips/mm | |
parent | 8bce4e9de113e2957c74cc4ce36fbd6eff47d24d (diff) |
[MIPS] TLB: Fix instruction bitmasks
Signed-Off-By: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/tlbex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 4ec0964b8394..9cb39644b6f1 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -78,7 +78,7 @@ enum fields | |||
78 | SET = 0x200 | 78 | SET = 0x200 |
79 | }; | 79 | }; |
80 | 80 | ||
81 | #define OP_MASK 0x2f | 81 | #define OP_MASK 0x3f |
82 | #define OP_SH 26 | 82 | #define OP_SH 26 |
83 | #define RS_MASK 0x1f | 83 | #define RS_MASK 0x1f |
84 | #define RS_SH 21 | 84 | #define RS_SH 21 |
@@ -92,7 +92,7 @@ enum fields | |||
92 | #define IMM_SH 0 | 92 | #define IMM_SH 0 |
93 | #define JIMM_MASK 0x3ffffff | 93 | #define JIMM_MASK 0x3ffffff |
94 | #define JIMM_SH 0 | 94 | #define JIMM_SH 0 |
95 | #define FUNC_MASK 0x2f | 95 | #define FUNC_MASK 0x3f |
96 | #define FUNC_SH 0 | 96 | #define FUNC_SH 0 |
97 | #define SET_MASK 0x7 | 97 | #define SET_MASK 0x7 |
98 | #define SET_SH 0 | 98 | #define SET_SH 0 |