commit | 2bd4082776ff17a0d0d565852afb422931c2f6f2 | [log] [tgz] |
---|---|---|
author | RongQing.Li <roy.qing.li@gmail.com> | Mon Jul 02 12:34:30 2012 +0800 |
committer | Ralf Baechle <ralf@linux-mips.org> | Mon Aug 27 16:10:13 2012 +0200 |
tree | 91e05d4d07dc50cb22e4ca66161f55124f139854 | |
parent | fea7a08acb13524b47711625eebea40a0ede69a0 [diff] |
MIPS: CMP/SMTC: Fix tc_id calculation Currently the tc_id code is: (read_c0_tcbind() >> TCBIND_CURTC_SHIFT) & TCBIND_CURTC; After processing this becomes: (read_c0_tcbind() >> 21) & ((0xff) << 21) But it should be: (read_c0_tcbind() & ((0xff)<< 21)) >> 21 Signed-off-by: RongQing.Li <roy.qing.li@gmail.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/4077/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>