]> Git Repo - linux.git/commitdiff
[IA64] Replace old style lock initializer
authorThomas Gleixner <[email protected]>
Fri, 6 Nov 2009 22:42:01 +0000 (22:42 +0000)
committerTony Luck <[email protected]>
Tue, 15 Dec 2009 00:39:45 +0000 (16:39 -0800)
SPIN_LOCK_UNLOCKED is deprecated. Use __SPIN_LOCK_UNLOCKED instead.

Signed-off-by: Thomas Gleixner <[email protected]>
Cc: [email protected]
Signed-off-by: Tony Luck <[email protected]>
arch/ia64/include/asm/rwsem.h

index fbee74b15782752b04754c2999d6f0d149e4fbb8..e8762688e8e3be5a17b90667130f47a041e9d669 100644 (file)
@@ -47,7 +47,7 @@ struct rw_semaphore {
 #define RWSEM_ACTIVE_WRITE_BIAS                (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
 
 #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) }
 
 #define DECLARE_RWSEM(name) \
This page took 0.060856 seconds and 4 git commands to generate.