The patch titled kernel-doc: drop various "inline" qualifiers has been added to the -mm tree. Its filename is kernel-doc-drop-various-inline-qualifiers.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: kernel-doc: drop various "inline" qualifiers From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Drop __inline, __always_inline, and noinline in the produced kernel-doc output, similar to other pseudo directives. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/kernel-doc | 3 +++ 1 files changed, 3 insertions(+) diff -puN scripts/kernel-doc~kernel-doc-drop-various-inline-qualifiers scripts/kernel-doc --- a/scripts/kernel-doc~kernel-doc-drop-various-inline-qualifiers +++ a/scripts/kernel-doc @@ -1518,6 +1518,9 @@ sub dump_function($$) { $prototype =~ s/^asmlinkage +//; $prototype =~ s/^inline +//; $prototype =~ s/^__inline__ +//; + $prototype =~ s/^__inline +//; + $prototype =~ s/^__always_inline +//; + $prototype =~ s/^noinline +//; $prototype =~ s/__devinit +//; $prototype =~ s/^#define +//; #ak added $prototype =~ s/__attribute__ \(\([a-z,]*\)\)//; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch ext4-enable.patch jbd2-enable.patch extents_comment_fix.patch git-acpi.patch acpi-fix-printk-format-warnings.patch w1-kconfig-fix.patch pcmcia-ds-must_check-fixes.patch acx1xx-wireless-driver.patch fix-module-taint-flags-listing-in-oops-panic.patch kernel-doc-fix-function-name-in-usercopyc.patch uaccessh-match-kernel-doc-and-function-names.patch i386-math-emu-fix-must_checks.patch kernel-doc-drop-various-inline-qualifiers.patch fs-cache-cachefiles-a-cache-that-backs-onto-a-mounted-filesystem-cachefiles-printk-format-warning.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