The patch titled i386: fix typo in sync_constant_test_bit()'s name has been added to the -mm tree. Its filename is i386-fix-typo-in-sync_constant_test_bits-name.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i386: fix typo in sync_constant_test_bit()'s name From: Jeremy Fitzhardinge <jeremy@xxxxxxxx> Fix typo in sync_constant_test_bit()'s name, so sync_bitops.h is consistent with bitops.h Signed-off-by: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx> Signed-off-by: Chris Wright <chrisw@xxxxxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-i386/sync_bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-i386/sync_bitops.h~i386-fix-typo-in-sync_constant_test_bits-name include/asm-i386/sync_bitops.h --- a/include/asm-i386/sync_bitops.h~i386-fix-typo-in-sync_constant_test_bits-name +++ a/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; _ Patches currently in -mm which might be from jeremy@xxxxxxxx are i386-fix-typo-in-sync_constant_test_bits-name.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html