diff options
author | Johannes Dickgreber <tanzy@gmx.de> | 2008-10-13 17:33:32 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-10-15 11:46:50 (GMT) |
commit | 9b8f3863d958eaf8747d9daf89998b558bcd6e33 (patch) | |
tree | 43ae7a58ce231747678066a6bf56f933a868abea /arch/mips | |
parent | 201c72a3799af598d492c500259c9e18b7db321a (diff) | |
download | linux-9b8f3863d958eaf8747d9daf89998b558bcd6e33.tar.xz |
MIPS: Fix wrong branch target in new spin_lock code.
Signed-off-by: Johannes Dickgreber <tanzy@gmx.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/spinlock.h b/arch/mips/include/asm/spinlock.h index 5d98a3c..1a1f320 100644 --- a/arch/mips/include/asm/spinlock.h +++ b/arch/mips/include/asm/spinlock.h @@ -147,7 +147,7 @@ static inline void __raw_spin_unlock(raw_spinlock_t *lock) " ori %[ticket], %[ticket], 0x2000 \n" " xori %[ticket], %[ticket], 0x2000 \n" " sc %[ticket], %[ticket_ptr] \n" - " beqzl %[ticket], 2f \n" + " beqzl %[ticket], 1b \n" : [ticket_ptr] "+m" (lock->lock), [ticket] "=&r" (tmp)); } else { |