diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-01-23 09:23:14 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-27 06:30:37 -0500 |
commit | 235454c99851ba21038061b9acf38d1a636068c5 (patch) | |
tree | 8160b40667fb7b15f1c6c93837fac166518d3947 /arch/xtensa/include | |
parent | 22e650045899011b028e40625bc73df9f3260bac (diff) |
xtensa: Replace deprecated spinlock initialization
SPIN_LOCK_UNLOCK is deprecated. Use the lockdep capable variant
instead.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/include')
-rw-r--r-- | arch/xtensa/include/asm/rwsem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/include/asm/rwsem.h b/arch/xtensa/include/asm/rwsem.h index e39edf5c86f2..9d32f6874393 100644 --- a/arch/xtensa/include/asm/rwsem.h +++ b/arch/xtensa/include/asm/rwsem.h | |||
@@ -38,7 +38,7 @@ struct rw_semaphore { | |||
38 | }; | 38 | }; |
39 | 39 | ||
40 | #define __RWSEM_INITIALIZER(name) \ | 40 | #define __RWSEM_INITIALIZER(name) \ |
41 | { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \ | 41 | { RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED((name).wait_lock), \ |
42 | LIST_HEAD_INIT((name).wait_list) } | 42 | LIST_HEAD_INIT((name).wait_list) } |
43 | 43 | ||
44 | #define DECLARE_RWSEM(name) \ | 44 | #define DECLARE_RWSEM(name) \ |