From justinmattock at gmail.com Tue Mar 23 21:10:10 2010 From: justinmattock at gmail.com (Justin P. Mattock) Date: Wed Mar 24 13:49:07 2010 Subject: [LNX-XTENSA-PATCH] [PATCH] Replace old style lock initializer Message-ID: <1269403810-31037-1-git-send-email-justinmattock@gmail.com> I seem to be on some deprecated thing. So after searching the kernel I found: SPIN_LOCK_UNLOCKED is deprecated, and that __SPIN_LOCK_UNLOCKED should be used. My finding's have found this, so hopefully it's legit.(the kernel compiles, but if anything else breaks am unsure due to not having this arch). Signed-off-by: Justin P. Mattock --- arch/alpha/include/asm/rwsem.h | 2 +- arch/xtensa/include/asm/rwsem.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/alpha/include/asm/rwsem.h b/arch/alpha/include/asm/rwsem.h index 1570c0b..f9dd7fe 100644 --- a/arch/alpha/include/asm/rwsem.h +++ b/arch/alpha/include/asm/rwsem.h @@ -39,7 +39,7 @@ struct rw_semaphore { }; #define __RWSEM_INITIALIZER(name) \ - { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \ + { RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED, \ LIST_HEAD_INIT((name).wait_list) } #define DECLARE_RWSEM(name) \ diff --git a/arch/xtensa/include/asm/rwsem.h b/arch/xtensa/include/asm/rwsem.h index e39edf5..1b3865c 100644 --- a/arch/xtensa/include/asm/rwsem.h +++ b/arch/xtensa/include/asm/rwsem.h @@ -38,7 +38,7 @@ struct rw_semaphore { }; #define __RWSEM_INITIALIZER(name) \ - { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \ + { RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED, \ LIST_HEAD_INIT((name).wait_list) } #define DECLARE_RWSEM(name) \ -- 1.6.5.GIT