diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-11-06 22:42:05 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-11-09 10:47:40 +0900 |
commit | 969e46a8533a3e40ce2146f6764a963b1f5505da (patch) | |
tree | 267350f5b91b0846b1b75cdecd0e44365c2a3d51 /arch/sh | |
parent | a9d244a2ff163247b607c4bb64803230ca8f8acb (diff) | |
download | linux-3.10-969e46a8533a3e40ce2146f6764a963b1f5505da.tar.gz linux-3.10-969e46a8533a3e40ce2146f6764a963b1f5505da.tar.bz2 linux-3.10-969e46a8533a3e40ce2146f6764a963b1f5505da.zip |
sh: Replace old style lock initializer
SPIN_LOCK_UNLOCKED is deprecated. Use __SPIN_LOCK_UNLOCKED instead.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-sh@vger.kernel.org
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/include/asm/rwsem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/rwsem.h b/arch/sh/include/asm/rwsem.h index 1987f3ea7f1..06e2251a5e4 100644 --- a/arch/sh/include/asm/rwsem.h +++ b/arch/sh/include/asm/rwsem.h @@ -41,7 +41,7 @@ struct rw_semaphore { #endif #define __RWSEM_INITIALIZER(name) \ - { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \ + { RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED((name).wait_lock), \ LIST_HEAD_INIT((name).wait_list) \ __RWSEM_DEP_MAP_INIT(name) } |