Latest Perl version marks unescaped left braces as deprecated in regexp

Unescaped left brace in regex is deprecated, passed through in regex;
 marked by <-- HERE in m/\#\s*define.*do\s{ <-- HERE /
 at ./scripts/checkpatch.pl line 3414.

Escape all open left braces that caused warnings

Signed-off-by: Nicolas Morey-Chaisemartin <nmo...@kalray.eu>
---
 scripts/checkpatch.pl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 4983a0c..893da37 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3411,7 +3411,7 @@ sub process {
 # function brace can't be on same line, except for #defines of do while,
 # or if closed on same line
                if (($line=~/$Type\s*$Ident\(.*\).*\s*{/) and
-                   !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
+                   !($line=~/\#\s*define.*do\s\{/) and !($line=~/}/)) {
                        if (ERROR("OPEN_BRACE",
                                  "open brace '{' following function 
declarations go on the next line\n" . $herecurr) &&
                            $fix) {
@@ -3923,8 +3923,8 @@ sub process {
 ##             }
 
 #need space before brace following if, while, etc
-               if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
-                   $line =~ /do{/) {
+               if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\){/) ||
+                   $line =~ /do\{/) {
                        if (ERROR("SPACING",
                                  "space required before the open brace '{'\n" 
. $herecurr) &&
                            $fix) {
@@ -4377,7 +4377,7 @@ sub process {
                            $dstat !~ /^for\s*$Constant$/ &&                    
        # for (...)
                            $dstat !~ 
/^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ &&   # for (...) bar()
                            $dstat !~ /^do\s*{/ &&                              
        # do {...
-                           $dstat !~ /^\({/ &&                                 
        # ({...
+                           $dstat !~ /^\(\{/ &&                                
        # ({...
                            $ctx !~ 
/^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
                        {
                                $ctx =~ s/\n*$//;
-- 
2.6.0.3.g4057e08

_______________________________________________
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to