diff options
Diffstat (limited to 'include/asm-sh64/atomic.h')
-rw-r--r-- | include/asm-sh64/atomic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-sh64/atomic.h b/include/asm-sh64/atomic.h index 927a2bc27b30..28f2ea9b567b 100644 --- a/include/asm-sh64/atomic.h +++ b/include/asm-sh64/atomic.h | |||
@@ -113,6 +113,8 @@ static inline int atomic_cmpxchg(atomic_t *v, int old, int new) | |||
113 | return ret; | 113 | return ret; |
114 | } | 114 | } |
115 | 115 | ||
116 | #define atomic_xchg(v, new) (xchg(&((v)->counter), new)) | ||
117 | |||
116 | static inline int atomic_add_unless(atomic_t *v, int a, int u) | 118 | static inline int atomic_add_unless(atomic_t *v, int a, int u) |
117 | { | 119 | { |
118 | int ret; | 120 | int ret; |
@@ -152,4 +154,5 @@ static __inline__ void atomic_set_mask(unsigned int mask, atomic_t *v) | |||
152 | #define smp_mb__before_atomic_inc() barrier() | 154 | #define smp_mb__before_atomic_inc() barrier() |
153 | #define smp_mb__after_atomic_inc() barrier() | 155 | #define smp_mb__after_atomic_inc() barrier() |
154 | 156 | ||
157 | #include <asm-generic/atomic.h> | ||
155 | #endif /* __ASM_SH64_ATOMIC_H */ | 158 | #endif /* __ASM_SH64_ATOMIC_H */ |