]> Git Repo - linux.git/commitdiff
PATCH scripts/kernel-doc
author[email protected] <[email protected]>
Tue, 17 Jul 2018 16:57:29 +0000 (12:57 -0400)
committerJonathan Corbet <[email protected]>
Mon, 23 Jul 2018 15:31:40 +0000 (09:31 -0600)
Fix a warning whinge from Perl introduced by "scripts: kernel-doc: parse next structs/unions"

Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/({ <-- HERE [^\{\}]*})/ at ./scripts/kernel-doc line 1155.
Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/({ <-- HERE )/ at ./scripts/kernel-doc line 1179.

Signed-off-by: Valdis Kletnieks <[email protected]>
Reviewed-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Jonathan Corbet <[email protected]>
scripts/kernel-doc

index 0057d8eafcc10cf922d81264e39c55002b8fc545..31a34ced55a34c1e1ca3f8d8d2112d15a94c2716 100755 (executable)
@@ -1152,7 +1152,7 @@ sub dump_struct($$) {
        }
 
        # Ignore other nested elements, like enums
-       $members =~ s/({[^\{\}]*})//g;
+       $members =~ s/(\{[^\{\}]*})//g;
 
        create_parameterlist($members, ';', $file, $declaration_name);
        check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
@@ -1176,7 +1176,7 @@ sub dump_struct($$) {
                        $declaration .= "\t" x $level;
                }
                $declaration .= "\t" . $clause . "\n";
-               $level++ if ($clause =~ m/({)/ && !($clause =~m/}/));
+               $level++ if ($clause =~ m/(\{)/ && !($clause =~m/}/));
        }
        output_declaration($declaration_name,
                           'struct',
This page took 0.064021 seconds and 4 git commands to generate.