diff options
Diffstat (limited to 'arch/frv/include/asm/atomic.h')
| -rw-r--r-- | arch/frv/include/asm/atomic.h | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/frv/include/asm/atomic.h b/arch/frv/include/asm/atomic.h index b86329d0e31..f6c3a169010 100644 --- a/arch/frv/include/asm/atomic.h +++ b/arch/frv/include/asm/atomic.h @@ -17,6 +17,7 @@  #include <linux/types.h>  #include <asm/spr-regs.h>  #include <asm/cmpxchg.h> +#include <asm/barrier.h>  #ifdef CONFIG_SMP  #error not SMP safe @@ -29,12 +30,6 @@   * We do not have SMP systems, so we don't have to deal with that.   */ -/* Atomic operations are already serializing */ -#define smp_mb__before_atomic_dec()	barrier() -#define smp_mb__after_atomic_dec()	barrier() -#define smp_mb__before_atomic_inc()	barrier() -#define smp_mb__after_atomic_inc()	barrier() -  #define ATOMIC_INIT(i)		{ (i) }  #define atomic_read(v)		(*(volatile int *)&(v)->counter)  #define atomic_set(v, i)	(((v)->counter) = (i))  | 
