summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2007-05-10 14:47:45 (GMT)
committerRalf Baechle <ralf@linux-mips.org>2007-05-11 13:28:33 (GMT)
commit7b239bb1068eda3f7e8befd9b43671093c206f0e (patch)
tree03e06ed57d690ca50f637d83a67b8ac846c6fd6d
parentfcbee6410d5c4112593e7082fb8d96dfdc6c1c25 (diff)
downloadlinux-7b239bb1068eda3f7e8befd9b43671093c206f0e.tar.xz
[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>
-rw-r--r--include/asm-mips/atomic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/atomic.h b/include/asm-mips/atomic.h
index 62daa74..1b60624 100644
--- a/include/asm-mips/atomic.h
+++ b/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)))
/**