The patch titled kernel-doc: make man/text mode function output same has been removed from the -mm tree. Its filename is kernel-doc-make-man-text-mode-function-output-same.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kernel-doc: make man/text mode function output same From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Make output of function descriptions in text mode match contents of 'man' mode by adding Name: plus function-short-description ("purpose") and changing Function: to Synopsis:. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/kernel-doc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff -puN scripts/kernel-doc~kernel-doc-make-man-text-mode-function-output-same scripts/kernel-doc --- a/scripts/kernel-doc~kernel-doc-make-man-text-mode-function-output-same +++ a/scripts/kernel-doc @@ -1119,7 +1119,10 @@ sub output_function_text(%) { my %args = %{$_[0]}; my ($parameter, $section); - print "Function:\n\n"; + print "Name:\n\n"; + print $args{'function'}." - ".$args{'purpose'}."\n"; + + print "\nSynopsis:\n\n"; my $start=$args{'functiontype'}." ".$args{'function'}." ("; print $start; my $count = 0; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch irq-flags-consolidate-flags-for-request_irq.patch irq-flags-documentation-use-the-new-irqf_-constansts.patch git-mtd.patch ioat-fix-sparse-ulong-warning.patch ioat-fix-header-file-kernel-doc.patch ioat-fix-kernel-doc-in-source-files.patch aic7-cleanup-module_parm_desc-strings.patch dc395x-fix-printk-format-warning.patch areca-raid-linux-scsi-driver.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