The patch titled Subject: include/asm-generic/atomic.h: fix comment has been removed from the -mm tree. Its filename was cleanup-include-asm-generic-atomich.patch This patch was dropped because it was nacked ------------------------------------------------------ From: Madhavan Srinivasan <maddy@xxxxxxxxxxxxxxxxxx> Subject: include/asm-generic/atomic.h: fix comment 4b358e2206 ("cleanup include/asm-generic/atomic.h") added comments for #else/#endif, but ended up adding same comment "BITS_PER_LONG == 64" on both sides. This patch fixes it. Signed-off-by: Madhavan Srinivasan <maddy@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-generic/atomic-long.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-generic/atomic-long.h~cleanup-include-asm-generic-atomich include/asm-generic/atomic-long.h --- a/include/asm-generic/atomic-long.h~cleanup-include-asm-generic-atomich +++ a/include/asm-generic/atomic-long.h @@ -253,6 +253,6 @@ static inline long atomic_long_add_unles #define atomic_long_xchg(v, new) \ (atomic_xchg((atomic_t *)(v), (new))) -#endif /* BITS_PER_LONG == 64 */ +#endif /* BITS_PER_LONG != 64 */ #endif /* _ASM_GENERIC_ATOMIC_LONG_H */ _ Patches currently in -mm which might be from maddy@xxxxxxxxxxxxxxxxxx are -- 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