OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
014365f
)
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>
Tue, 26 Aug 2014 00:18:52 +0000
(
02:18
+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); \