The patch titled Some grammatical fixups and additions to atomic.h kernel-doc content has been added to the -mm tree. Its filename is some-grammatical-fixups-and-additions-to-atomich-kernel-doc.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: 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 @@ -51,7 +51,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 * @@ -170,7 +170,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 * @@ -202,6 +202,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 remove-unused-header-file-sound-pci-cs46xx-imgs-cwcemb80h.patch remove-unused-header-file-arch-arm-mach-s3c2410-basth.patch git-avr32.patch remove-unused-header-file-arch-ppc-syslib-cpc710h.patch remove-unused-header-file-arch-powerpc-platforms-83xx-mpc834x_itxh.patch remove-unused-header-file-drivers-char-drm-via_mmh.patch mtd-correct-misspelled-preprocessor-variable.patch jffs2-remove-superfluous-source-file-fs-jffs2-comprtestc.patch remove-unused-header-file-drivers-net-skfp-h-lnkstath.patch remove-unused-header-file-drivers-net-wan-lmc-lmc_mediah.patch delete-superfluous-source-file-net-wanrouter-af_wanpipec.patch remove-some-unused-scsi-related-kernel-config-variables.patch scsi-fix-obvious-typo-spin_lock_irqrestore-in-gdthc.patch remove-unused-header-file-drivers-message-fusion-lsi-mpi_inbh-and-drivers-message-fusion-lsi-mpi_log_fch.patch remove-unused-header-file-arch-m68k-atari-atasoundh.patch remove-unused-header-file-drivers-serial-crisv10h.patch remove-unused-header-file-arch-um-kernel-tt-include-mode_kern-tth.patch reiserfs-correct-misspelled-reiserfs_proc_info-to.patch kconfig-centralize-the-selection-of-semaphore-debugging.patch rocket-remove-modversions-include.patch remove-unused-header-file-include-linux-elfnoteh.patch remove-unused-header-file-drivers-message-i2o-i2o_lanh.patch remove-unused-header-file-drivers-char-digih.patch some-grammatical-fixups-and-additions-to-atomich-kernel-doc.patch remove-unused-header-file-drivers-video-riva-nv4refh.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