dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Atsushi Nemoto 2007-05-10 23:47:45 +09:00 committed by Ralf Baechle
parent fcbee6410d
commit 7b239bb106
1 changed files with 1 additions and 1 deletions

View File

@ -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)))
/**