The patch titled kernel-doc: init kernel version has been removed from the -mm tree. Its filename was kernel-doc-init-kernel-version.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kernel-doc: init kernel version From: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> The kernel-doc script triggers a perl warning when invoked without KERNELVERSION in the environment, rather make it use the string "unknown kernel version" instead. Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/kernel-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/kernel-doc~kernel-doc-init-kernel-version scripts/kernel-doc --- a/scripts/kernel-doc~kernel-doc-init-kernel-version +++ a/scripts/kernel-doc @@ -334,7 +334,7 @@ while ($ARGV[0] =~ m/^-(.*)/) { # get kernel version from env sub get_kernel_version() { - my $version; + my $version = 'unknown kernel version'; if (defined($ENV{'KERNELVERSION'})) { $version = $ENV{'KERNELVERSION'}; _ Patches currently in -mm which might be from johannes@xxxxxxxxxxxxxxxx are origin.patch git-input.patch fix-appletouch-geyser-1-breakage.patch fix-appletouch-geyser-1-breakage-checkpatch-fixes.patch git-kbuild.patch git-wireless.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