patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-arm / spinlock.h
index 2d0354f..1c22e7f 100644 (file)
@@ -24,6 +24,7 @@ typedef struct {
 #define spin_lock_init(x)      do { *(x) = SPIN_LOCK_UNLOCKED; } while (0)
 #define spin_is_locked(x)      ((x)->lock != 0)
 #define spin_unlock_wait(x)    do { barrier(); } while (spin_is_locked(x))
+#define _raw_spin_lock_flags(lock, flags) _raw_spin_lock(lock)
 
 static inline void _raw_spin_lock(spinlock_t *lock)
 {
@@ -88,7 +89,7 @@ static inline void _raw_write_lock(rwlock_t *rw)
 "      strexeq %0, %2, [%1]\n"
 "      teq     %0, #0\n"
 "      bne     1b"
-       : "=r" (tmp)
+       : "=&r" (tmp)
        : "r" (&rw->lock), "r" (0x80000000)
        : "cc", "memory");
 }
@@ -150,7 +151,7 @@ static inline int _raw_write_trylock(rwlock_t *rw)
 "1:    ldrex   %0, [%1]\n"
 "      teq     %0, #0\n"
 "      strexeq %0, %2, [%1]"
-       : "=r" (tmp)
+       : "=&r" (tmp)
        : "r" (&rw->lock), "r" (0x80000000)
        : "cc", "memory");