From c0284b372ca26fe8ea15bb76395c8bff2c444ba9 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 27 Jul 2014 21:59:58 -0400 Subject: remove unused a_cas_l from or1k atomic.h this follows the same logic as in the previous commit for other archs. --- arch/or1k/atomic.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'arch') diff --git a/arch/or1k/atomic.h b/arch/or1k/atomic.h index 10f75cbe..5b0411b0 100644 --- a/arch/or1k/atomic.h +++ b/arch/or1k/atomic.h @@ -41,11 +41,6 @@ static inline void *a_cas_p(volatile void *p, void *t, void *s) return (void *)a_cas(p, (int)t, (int)s); } -static inline long a_cas_l(volatile void *p, long t, long s) -{ - return a_cas(p, t, s); -} - static inline int a_swap(volatile int *x, int v) { int old; -- cgit v1.2.1