The patch titled Subject: checkpatch: fix missing close parenthesis has been removed from the -mm tree. Its filename was checkpatch-improve-patch-recognition-fix.patch This patch was dropped because it was folded into checkpatch-improve-patch-recognition.patch ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch: fix missing close parenthesis Latest -next has a missing close parenthesis in the patch that adds better recognition for rename only patches. Add it. Link: http://lkml.kernel.org/r/af44c893f6973393f2a5b11f1a8e5cd4c8bbbba5.camel@xxxxxxxxxxx Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/checkpatch.pl~checkpatch-improve-patch-recognition-fix scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-improve-patch-recognition-fix +++ a/scripts/checkpatch.pl @@ -2381,7 +2381,7 @@ sub process { if (!$in_commit_log && ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ || ($line =~ /^rename (?:from|to) \S+\s*$/ || - $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/)) { + $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) { $is_patch = 1; } _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are scripts-use-spdx-tag-in-get_maintainer-and-checkpatch.patch get_maintainer-improve-patch-recognition.patch checkpatch-improve-patch-recognition.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