aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2012-07-06 10:44:13 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-07-09 12:41:10 -0400
commit881ccccb6bd3f0e1fff8b9addbe0de90e0b16166 (patch)
tree4c4a28b0954881898f79b8d6fce9f022caffc98d /arch/arm
parent546c2896a42202dbc7d02f7c6ec9948ac1bf511b (diff)
ARM: 7447/1: rwlocks: remove unused branch labels from trylock routines
The ARM arch_{read,write}_trylock implementations include unused backwards branch labels, since we don't retry the locking operation if the exclusive store fails. This patch removes the labels. Acked-by: Nicolas Pitre <nico@linaro.org> Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/include/asm/spinlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/spinlock.h b/arch/arm/include/asm/spinlock.h
index 0da2effd4b37..b4ca707d0a69 100644
--- a/arch/arm/include/asm/spinlock.h
+++ b/arch/arm/include/asm/spinlock.h
@@ -182,7 +182,7 @@ static inline int arch_write_trylock(arch_rwlock_t *rw)
182 unsigned long tmp; 182 unsigned long tmp;
183 183
184 __asm__ __volatile__( 184 __asm__ __volatile__(
185"1: ldrex %0, [%1]\n" 185" ldrex %0, [%1]\n"
186" teq %0, #0\n" 186" teq %0, #0\n"
187" strexeq %0, %2, [%1]" 187" strexeq %0, %2, [%1]"
188 : "=&r" (tmp) 188 : "=&r" (tmp)
@@ -268,7 +268,7 @@ static inline int arch_read_trylock(arch_rwlock_t *rw)
268 unsigned long tmp, tmp2 = 1; 268 unsigned long tmp, tmp2 = 1;
269 269
270 __asm__ __volatile__( 270 __asm__ __volatile__(
271"1: ldrex %0, [%2]\n" 271" ldrex %0, [%2]\n"
272" adds %0, %0, #1\n" 272" adds %0, %0, #1\n"
273" strexpl %1, %0, [%2]\n" 273" strexpl %1, %0, [%2]\n"
274 : "=&r" (tmp), "+r" (tmp2) 274 : "=&r" (tmp), "+r" (tmp2)