MIPS: GIC: Remove useless parens from GICBIS().
authorRalf Baechle <ralf@linux-mips.org>
Fri, 8 Aug 2014 13:09:40 +0000 (15:09 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 18 Aug 2014 20:14:39 +0000 (22:14 +0200)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/gic.h

index 3f20b2111d56c3ad8b653f0bbab81d3d14d46ba9..d7699cf7e135e22f84b0f4c5e45028ce5567d404 100644 (file)
@@ -49,7 +49,7 @@
 #endif
 #define GICBIS(reg, mask, bits)                        \
        do { u32 data;                          \
-               GICREAD((reg), data);           \
+               GICREAD(reg, data);             \
                data &= ~(mask);                \
                data |= ((bits) & (mask));      \
                GICWRITE((reg), data);          \