Prev: [PATCH 1/2] sis-agp: Remove SIS 760, handled by amd64-agp
Next: linux-next: build failure after merge of the final tree (wireless tree related)
From: Justin P. Mattock on 24 Mar 2010 00:20 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 <justinmattock(a)gmail.com> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |