The patch titled kernel-doc: drop various "inline" qualifiers has been removed from the -mm tree. Its filename is kernel-doc-drop-various-inline-qualifiers.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 file 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 git-acpi.patch acpi-fix-printk-format-warnings.patch w1-kconfig-fix.patch pcmcia-ds-must_check-fixes.patch i386-math-emu-fix-must_checks.patch acx1xx-wireless-driver.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