b53d6bedbe
Since all architectures have this implemented now natively, remove this dead code. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-arch@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
9 lines
180 B
C
9 lines
180 B
C
#ifndef ___ASM_SPARC_ATOMIC_H
|
|
#define ___ASM_SPARC_ATOMIC_H
|
|
#if defined(__sparc__) && defined(__arch64__)
|
|
#include <asm/atomic_64.h>
|
|
#else
|
|
#include <asm/atomic_32.h>
|
|
#endif
|
|
#endif
|