aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Vaussard <[email protected]>2014-04-03 14:49:24 -0700
committerLinus Torvalds <[email protected]>2014-04-03 16:21:14 -0700
commit8f0dbfaf2715b80f491c3e23c318c4202abf89e2 (patch)
treee574c770d90d52b31ce9762be181e89fbd6782ec
parent515a235ef9bcd31faa672740720936b22fa99c0e (diff)
checkpatch: check vendor compatible with dashes
The current vendor compatible check will not match vendors with dashes, like: compatible="asahi-kasei" Signed-off-by: Florian Vaussard <[email protected]> Reported-by: Joe Perches <[email protected]> Acked-by: Rob Herring <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 9f03345a1c5c..3b268b3f2362 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2091,7 +2091,7 @@ sub process {
my $vendor = $compat;
my $vendor_path = $dt_path . "vendor-prefixes.txt";
next if (! -f $vendor_path);
- $vendor =~ s/^([a-zA-Z0-9]+)\,.*/$1/;
+ $vendor =~ s/^([a-zA-Z0-9\-]+)\,.*/$1/;
`grep -Eq "$vendor" $vendor_path`;
if ( $? >> 8 ) {
WARN("UNDOCUMENTED_DT_STRING",