[PATCH] Use atomic64_set for 64-bit case of atomic_long_set

For some reason, the BITS_PER_LONG == 64 case of atomic_long_set
was using atomic_set instead of atomic64_set. This does not jive
with architectures which use an inline instead of a #define to
implement their atomic_set() primitives.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Kyle McMartin and committed by Linus Torvalds 6b4977ce 69ff56c1

+1 -1
+1 -1
include/asm-generic/atomic.h
··· 35 35 { 36 36 atomic64_t *v = (atomic64_t *)l; 37 37 38 - atomic_set(v, i); 38 + atomic64_set(v, i); 39 39 } 40 40 41 41 static inline void atomic_long_inc(atomic_long_t *l)