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-26 02:18:52 +0200 |
commit | 7b626d93453903e36cbc0189f4cbf7b195e2c037 (patch) | |
tree | f11b1426239116a0b41cb5bddbefb31c7b62e17c /arch/mips | |
parent | 014365f5831dc993ac02b8871a165c9a7bde56cc (diff) | |
download | linux-stable-7b626d93453903e36cbc0189f4cbf7b195e2c037.tar.gz linux-stable-7b626d93453903e36cbc0189f4cbf7b195e2c037.tar.bz2 linux-stable-7b626d93453903e36cbc0189f4cbf7b195e2c037.zip |
MIPS: GIC: Remove useless parens from GICBIS().
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-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); \ |