[<prev] [next>] [day] [month] [year] [list]
Message-ID: <45FAFDD3.6080400@goop.org>
Date: Fri, 16 Mar 2007 13:28:03 -0700
From: Jeremy Fitzhardinge <jeremy@...p.org>
To: Linus Torvalds <torvalds@...ux-foundation.org>
CC: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Andi Kleen <ak@...e.de>
Subject: [PATCH] Fix typo in sync_constant_test_bit()'s name.
Fix typo in sync_constant_test_bit()'s name, so sync_bitops.h is consistent with bitops.h
[ Linus, please apply. Thanks -J ]
Signed-off-by: Jeremy Fitzhardinge <jeremy@...source.com>
Signed-off-by: Chris Wright <chrisw@...s-sol.org>
Acked-by: Ingo Molnar <mingo@...e.hu>
---
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;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists