summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/checkpatch.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 93a7edfe0f05..3c0ee0dde850 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2725,8 +2725,10 @@ sub process {
2725 ($line =~ /^\s*(?:WARNING:|BUG:)/ || 2725 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2726 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ || 2726 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2727 # timestamp 2727 # timestamp
2728 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) { 2728 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/) ||
2729 # stack dump address 2729 $line =~ /^(?:\s+\w+:\s+[0-9a-fA-F]+){3,3}/ ||
2730 $line =~ /^\s*\#\d+\s*\[[0-9a-fA-F]+\]\s*\w+ at [0-9a-fA-F]+/) {
2731 # stack dump address styles
2730 $commit_log_possible_stack_dump = 1; 2732 $commit_log_possible_stack_dump = 1;
2731 } 2733 }
2732 2734