diff options
author | Ben Collins <ben.collins@ubuntu.com> | 2005-12-23 09:10:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-24 12:30:22 -0800 |
commit | e5c34a57c8b3a94b8d2b329936f8b1cbcc765307 (patch) | |
tree | b7cb357ac102c0af39e00055cac069329fcfde3f /include/asm-x86_64 | |
parent | c660439ba90aaaa056f68a5b0fc79f6b9e0506f5 (diff) | |
download | op-kernel-dev-e5c34a57c8b3a94b8d2b329936f8b1cbcc765307.zip op-kernel-dev-e5c34a57c8b3a94b8d2b329936f8b1cbcc765307.tar.gz |
[PATCH] Fix typo in x86_64 __build_write_lock_const assembly
Based on __build_read_lock_const, this looked like a bug.
[ Indeed. Maybe nobody uses this version? Worth fixing up anyway ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-x86_64')
-rw-r--r-- | include/asm-x86_64/rwlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86_64/rwlock.h b/include/asm-x86_64/rwlock.h index 8a78a4a..9942cc3 100644 --- a/include/asm-x86_64/rwlock.h +++ b/include/asm-x86_64/rwlock.h @@ -64,7 +64,7 @@ ::"a" (rw) : "memory") #define __build_write_lock_const(rw, helper) \ - asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",(%0)\n\t" \ + asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",%0\n\t" \ "jnz 2f\n" \ "1:\n" \ LOCK_SECTION_START("") \ |