The patch titled kernel-doc: drop leading space in sections has been removed from the -mm tree. Its filename is kernel-doc-drop-leading-space-in-sections.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kernel-doc: drop leading space in sections From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Drop leading space of kernel-doc section contents. "Section" data (contents) are split from the section header (e.g., Note: below is a section header: * Note: list_empty on entry does not return true after this, the entry is * in an undefined state. ). Currently the data/contents begins with a space and is left that way, which causes it to look bad when printed (in text mode; see example below), so just remove the leading space. Note: list_empty on entry does not return true after this, the entry is in an undefined state. 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-leading-space-in-sections scripts/kernel-doc --- a/scripts/kernel-doc~kernel-doc-drop-leading-space-in-sections +++ a/scripts/kernel-doc @@ -1762,6 +1762,9 @@ sub process_file($) { $contents = $newcontents; if ($contents ne "") { + if (substr($contents, 0, 1) eq " ") { + $contents = substr($contents, 1); + } $contents .= "\n"; } $section = $newsection; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch git-kbuild.patch git-pcmcia.patch lpfc-sparse-null-warnings.patch aic7-cleanup-module_parm_desc-strings.patch qla1280-fix-section-mismatch-warnings.patch areca-raid-linux-scsi-driver.patch git-watchdog.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch poison-add-use-more-constants.patch pi-futex-rt-mutex-docs-update.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