diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-08-08 15:09:40 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-08-18 22:14:39 +0200 |
commit | f28ff3d1ead40515c14ee841dc8b801c7d64353b (patch) | |
tree | 8d13acb4fec97a1e87b1e067405c2334af52c2dc | |
parent | ec756d45b7f21888f4b44cb71b047e33ee2c8d8f (diff) | |
download | linux-stable-f28ff3d1ead40515c14ee841dc8b801c7d64353b.tar.gz linux-stable-f28ff3d1ead40515c14ee841dc8b801c7d64353b.tar.bz2 linux-stable-f28ff3d1ead40515c14ee841dc8b801c7d64353b.zip |
MIPS: GIC: Remove useless parens from GICBIS().
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/include/asm/gic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/gic.h b/arch/mips/include/asm/gic.h index 3f20b2111d56..d7699cf7e135 100644 --- a/arch/mips/include/asm/gic.h +++ b/arch/mips/include/asm/gic.h @@ -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); \ |