ソースを参照

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

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 11 年 前
コミット
f28ff3d1ea
1 ファイル変更1 行追加1 行削除
  1. 1 1
      arch/mips/include/asm/gic.h

+ 1 - 1
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);		\