Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932509AbZKFWnE (ORCPT ); Fri, 6 Nov 2009 17:43:04 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932415AbZKFWnA (ORCPT ); Fri, 6 Nov 2009 17:43:00 -0500 Received: from www.tglx.de ([62.245.132.106]:54112 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933250AbZKFWm3 (ORCPT ); Fri, 6 Nov 2009 17:42:29 -0500 Message-Id: <20091106223807.013213923@linutronix.de> User-Agent: quilt/0.47-1 Date: Fri, 06 Nov 2009 22:42:18 -0000 From: Thomas Gleixner To: LKML Cc: Ingo Molnar , Peter Zijlstra , Chris Zankel Subject: [patch 15/16] xtensa: Replace old style lock initializer References: <20091106223547.784916750@linutronix.de> Content-Disposition: inline; filename=xtensa-replace-old-style-lock-init.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 985 Lines: 28 SPIN_LOCK_UNLOCKED is deprecated. Use __SPIN_LOCK_UNLOCKED instead. Signed-off-by: Thomas Gleixner Cc: Chris Zankel --- arch/xtensa/include/asm/rwsem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/arch/xtensa/include/asm/rwsem.h =================================================================== --- linux-2.6.orig/arch/xtensa/include/asm/rwsem.h +++ linux-2.6/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((name).wait_lock), \ LIST_HEAD_INIT((name).wait_list) } #define DECLARE_RWSEM(name) \ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/