projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec756d4
)
MIPS: GIC: Remove useless parens from GICBIS().
author
Ralf Baechle
<ralf@linux-mips.org>
Fri, 8 Aug 2014 13:09:40 +0000
(15:09 +0200)
committer
Ralf 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
patch
|
blob
|
history
diff --git
a/arch/mips/include/asm/gic.h
b/arch/mips/include/asm/gic.h
index
3f20b21
..
d7699cf
100644
(file)
--- 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); \