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 @@
#endif
#define GICBIS(reg, mask, bits) \
do { u32 data; \
GICREAD((reg), data); \
GICREAD(reg, data); \
data &= ~(mask); \
data |= ((bits) & (mask)); \
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