Commit f28ff3d1 authored by Ralf Baechle's avatar Ralf Baechle

MIPS: GIC: Remove useless parens from GICBIS().

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent ec756d45
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
#endif #endif
#define GICBIS(reg, mask, bits) \ #define GICBIS(reg, mask, bits) \
do { u32 data; \ do { u32 data; \
GICREAD((reg), data); \ GICREAD(reg, data); \
data &= ~(mask); \ data &= ~(mask); \
data |= ((bits) & (mask)); \ data |= ((bits) & (mask)); \
GICWRITE((reg), data); \ GICWRITE((reg), data); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment