mips: use asm-generic/atomic.h
authorChris Packham <judge.packham@gmail.com>
Sat, 8 Sep 2018 09:39:06 +0000 (21:39 +1200)
committerTom Rini <trini@konsulko.com>
Wed, 26 Sep 2018 01:49:18 +0000 (21:49 -0400)
Make use of asm-generic/atomic.h.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
arch/mips/include/asm/atomic.h

index 7551bf6e6c2cd520cfc6a0f3a11f4d6b5d5d6067..c4f08b78200e102095f9d8100c7adf43fff4bef4 100644 (file)
@@ -7,48 +7,6 @@
 #define _MIPS_ATOMIC_H
 
 #include <asm/system.h>
-
-typedef struct { volatile int counter; } atomic_t;
-
-#define ATOMIC_INIT(i) { (i) }
-
-#define atomic_read(v)         ((v)->counter)
-#define atomic_set(v, i)       ((v)->counter = (i))
-
-static inline void atomic_add(int i, atomic_t *v)
-{
-       unsigned long flags;
-
-       local_irq_save(flags);
-       v->counter += i;
-       local_irq_restore(flags);
-}
-
-static inline void atomic_sub(int i, atomic_t *v)
-{
-       unsigned long flags;
-
-       local_irq_save(flags);
-       v->counter -= i;
-       local_irq_restore(flags);
-}
-
-static inline void atomic_inc(atomic_t *v)
-{
-       unsigned long flags;
-
-       local_irq_save(flags);
-       ++v->counter;
-       local_irq_restore(flags);
-}
-
-static inline void atomic_dec(atomic_t *v)
-{
-       unsigned long flags;
-
-       local_irq_save(flags);
-       --v->counter;
-       local_irq_restore(flags);
-}
+#include <asm-generic/atomic.h>
 
 #endif