From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeremy Fitzhardinge Subject: [patch 01/26] Xen-paravirt_ops: Fix typo in sync_constant_test_bit()s name. Date: Tue, 27 Feb 2007 00:13:38 -0800 Message-ID: <20070227081629.356512263@goop.org> References: <20070227081337.434798469@goop.org> Return-path: Content-Disposition: inline; filename=fix-sync-bitops.patch Sender: linux-kernel-owner@vger.kernel.org To: Andi Kleen Cc: Andrew Morton , linux-kernel@vger.kernel.org, virtualization@lists.osdl.org, xen-devel@lists.xensource.com, Chris Wright , Zachary Amsden , Rusty Russell List-Id: virtualization@lists.linuxfoundation.org Signed-off-by: Jeremy Fitzhardinge --- include/asm-i386/sync_bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) =================================================================== --- a/include/asm-i386/sync_bitops.h +++ b/include/asm-i386/sync_bitops.h @@ -130,7 +130,7 @@ static inline int sync_test_and_change_b return oldbit; } -static __always_inline int sync_const_test_bit(int nr, const volatile unsigned long *addr) +static __always_inline int sync_constant_test_bit(int nr, const volatile unsigned long *addr) { return ((1UL << (nr & 31)) & (((const volatile unsigned int *)addr)[nr >> 5])) != 0; --