MIPS: R3000: Remove redundant parentheses
authorIsamu Mogi <isamu@leafytree.jp>
Thu, 30 Oct 2014 13:07:38 +0000 (22:07 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 24 Nov 2014 06:45:01 +0000 (07:45 +0100)
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>
arch/mips/lib/r3k_dump_tlb.c

index c97bb70a06e614e04efe4aac59b9bb648c1963bf..975a1385511617b2507aab6fb8f53a87faa7c6e2 100644 (file)
@@ -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,
This page took 0.025512 seconds and 5 git commands to generate.