diff options
author | Isamu Mogi <isamu@leafytree.jp> | 2014-10-30 22:07:38 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-24 07:45:01 +0100 |
commit | 432d9ecb9628bdcb20670b2cf0678f3738bd40a5 (patch) | |
tree | e0cc05e385b322292679900a5a1a580ef3414da9 | |
parent | 80e8bd266cf090b74e53380780371a8507692741 (diff) | |
download | op-kernel-dev-432d9ecb9628bdcb20670b2cf0678f3738bd40a5.zip op-kernel-dev-432d9ecb9628bdcb20670b2cf0678f3738bd40a5.tar.gz |
MIPS: R3000: Remove redundant parentheses
Signed-off-by: Isamu Mogi <isamu@leafytree.jp>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/8292/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/lib/r3k_dump_tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/r3k_dump_tlb.c b/arch/mips/lib/r3k_dump_tlb.c index c97bb70..975a138 100644 --- a/arch/mips/lib/r3k_dump_tlb.c +++ b/arch/mips/lib/r3k_dump_tlb.c @@ -44,7 +44,7 @@ static void dump_tlb(int first, int last) printk("va=%08lx asid=%08lx" " [pa=%06lx n=%d d=%d v=%d g=%d]", - (entryhi & PAGE_MASK), + entryhi & PAGE_MASK, entryhi & ASID_MASK, entrylo0 & PAGE_MASK, (entrylo0 & (1 << 11)) ? 1 : 0, |