Explorar o código

[MIPS] Fix build error in atomic64_cmpxchg

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Atsushi Nemoto %!s(int64=18) %!d(string=hai) anos
pai
achega
7b239bb106
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/asm-mips/atomic.h

+ 1 - 1
include/asm-mips/atomic.h

@@ -689,7 +689,7 @@ static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v)
 }
 
 #define atomic64_cmpxchg(v, o, n) \
-	(((__typeof__((v)->counter)))cmpxchg(&((v)->counter), (o), (n)))
+	((__typeof__((v)->counter))cmpxchg(&((v)->counter), (o), (n)))
 #define atomic64_xchg(v, new) (xchg(&((v)->counter), (new)))
 
 /**