aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index e954df2b2077..4306b7616cdd 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2875,6 +2875,7 @@ sub process {
2875# logging functions like pr_info that end in a string 2875# logging functions like pr_info that end in a string
2876# lines with a single string 2876# lines with a single string
2877# #defines that are a single string 2877# #defines that are a single string
2878# lines with an RFC3986 like URL
2878# 2879#
2879# There are 3 different line length message types: 2880# There are 3 different line length message types:
2880# LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length 2881# LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
@@ -2906,6 +2907,10 @@ sub process {
2906 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) { 2907 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
2907 $msg_type = ""; 2908 $msg_type = "";
2908 2909
2910 # URL ($rawline is used in case the URL is in a comment)
2911 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
2912 $msg_type = "";
2913
2909 # Otherwise set the alternate message types 2914 # Otherwise set the alternate message types
2910 2915
2911 # a comment starts before $max_line_length 2916 # a comment starts before $max_line_length