The patch titled Some grammatical fixups and additions to atomic.h kernel-doc content has been removed from the -mm tree. Its filename was some-grammatical-fixups-and-additions-to-atomich-kernel-doc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Some grammatical fixups and additions to atomic.h kernel-doc content From: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx> Tweak and add content for extractable documentation in asm-i386/atomic.h. Signed-off-by: Robert P. J. Day <rpjday@xxxxxxxxxxxxxx> Acked-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-i386/atomic.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff -puN include/asm-i386/atomic.h~some-grammatical-fixups-and-additions-to-atomich-kernel-doc include/asm-i386/atomic.h --- a/include/asm-i386/atomic.h~some-grammatical-fixups-and-additions-to-atomich-kernel-doc +++ a/include/asm-i386/atomic.h @@ -52,7 +52,7 @@ static __inline__ void atomic_add(int i, } /** - * atomic_sub - subtract the atomic variable + * atomic_sub - subtract integer from atomic variable * @i: integer value to subtract * @v: pointer of type atomic_t * @@ -171,7 +171,7 @@ static __inline__ int atomic_add_negativ } /** - * atomic_add_return - add and return + * atomic_add_return - add integer and return * @v: pointer of type atomic_t * @i: integer value to add * @@ -203,6 +203,13 @@ no_xadd: /* Legacy 386 processor */ #endif } +/** + * atomic_sub_return - subtract integer and return + * @v: pointer of type atomic_t + * @i: integer value to subtract + * + * Atomically subtracts @i from @v and returns @v - @i + */ static __inline__ int atomic_sub_return(int i, atomic_t *v) { return atomic_add_return(-i,v); _ Patches currently in -mm which might be from rpjday@xxxxxxxxxxxxxx are origin.patch git-alsa.patch remove-unused-header-file-arch-arm-mach-s3c2410-basth.patch arm-remove-useless-config-option-generic_bust_spinlock.patch git-avr32.patch git-dvb.patch git-ieee1394.patch pcmcia-delete-obsolete-pcmcia_ioctl-feature.patch scsi-fix-obvious-typo-spin_lock_irqrestore-in-gdthc.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