The patch titled Subject: checkpatch: fix another left brace warning has been removed from the -mm tree. Its filename was checkpatch-fix-left-brace-warning.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Geyslan G. Bem <geyslan@xxxxxxxxx> Subject: checkpatch: fix another left brace warning This patch escapes a regex that uses left brace. Using checkpatch.pl with Perl 5.22.0 generates the warning: "Unescaped left brace in regex is deprecated, passed through in regex;" Comment from regcomp.c in Perl source: "Currently we don't warn when the lbrace is at the start of a construct. This catches it in the middle of a literal string, or when it's the first thing after something like "\b"." This works as a complement to 4e5d56bd ("checkpatch: fix left brace warning"). Signed-off-by: Geyslan G. Bem <geyslan@xxxxxxxxx> Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Suggested-by: Peter Senna Tschudin <peter.senna@xxxxxxxxx> Cc: Eddie Kovsky <ewk@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/checkpatch.pl~checkpatch-fix-left-brace-warning scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-fix-left-brace-warning +++ a/scripts/checkpatch.pl @@ -4132,7 +4132,7 @@ sub process { ## } #need space before brace following if, while, etc - if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\){/) || + if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) || $line =~ /do\{/) { if (ERROR("SPACING", "space required before the open brace '{'\n" . $herecurr) && _ Patches currently in -mm which might be from geyslan@xxxxxxxxx are -- 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