dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Johannes Dickgreber 2008-10-13 19:33:32 +02:00 committed by Ralf Baechle
parent 201c72a379
commit 9b8f3863d9
1 changed files with 1 additions and 1 deletions

View File

@ -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 {