|
@@ -45,7 +45,7 @@
|
|
#define atomic_inc(v) atomic_add(1,(v))
|
|
#define atomic_inc(v) atomic_add(1,(v))
|
|
#define atomic_dec(v) atomic_sub(1,(v))
|
|
#define atomic_dec(v) atomic_sub(1,(v))
|
|
|
|
|
|
-#ifndef CONFIG_GUSA_RB
|
|
|
|
|
|
+#if !defined(CONFIG_GUSA_RB) && !defined(CONFIG_CPU_SH4A)
|
|
static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
|
|
static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
|
|
{
|
|
{
|
|
int ret;
|
|
int ret;
|
|
@@ -73,7 +73,7 @@ static inline int atomic_add_unless(atomic_t *v, int a, int u)
|
|
|
|
|
|
return ret != u;
|
|
return ret != u;
|
|
}
|
|
}
|
|
-#endif
|
|
|
|
|
|
+#endif /* !CONFIG_GUSA_RB && !CONFIG_CPU_SH4A */
|
|
|
|
|
|
#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
|
|
#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
|
|
#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
|
|
#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
|