summaryrefslogtreecommitdiff
path: root/arch/m68k/atomic_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m68k/atomic_arch.h')
-rw-r--r--arch/m68k/atomic_arch.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/m68k/atomic_arch.h b/arch/m68k/atomic_arch.h
new file mode 100644
index 00000000..b369649a
--- /dev/null
+++ b/arch/m68k/atomic_arch.h
@@ -0,0 +1,8 @@
+#define a_cas a_cas
+static inline int a_cas(volatile int *p, int t, int s)
+{
+ __asm__ __volatile__ (
+ "cas.l %0, %2, (%1)"
+ : "+d"(t) : "a"(p), "d"(s) : "memory", "cc");
+ return t;
+}