aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index f04fe88d998d..954f4914c4af 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -5132,7 +5132,7 @@ sub process {
5132# Check for misused memsets 5132# Check for misused memsets
5133 if ($^V && $^V ge 5.10.0 && 5133 if ($^V && $^V ge 5.10.0 &&
5134 defined $stat && 5134 defined $stat &&
5135 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) { 5135 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
5136 5136
5137 my $ms_addr = $2; 5137 my $ms_addr = $2;
5138 my $ms_val = $7; 5138 my $ms_val = $7;