summaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
authorFlorian Vaussard2014-04-03 23:49:24 +0200
committerLinus Torvalds2014-04-04 01:21:14 +0200
commit8f0dbfaf2715b80f491c3e23c318c4202abf89e2 (patch)
treee574c770d90d52b31ce9762be181e89fbd6782ec /scripts/checkpatch.pl
parentcheckpatch: improve octal permissions test speed (diff)
downloadkernel-qcow2-linux-8f0dbfaf2715b80f491c3e23c318c4202abf89e2.tar.gz
kernel-qcow2-linux-8f0dbfaf2715b80f491c3e23c318c4202abf89e2.tar.xz
kernel-qcow2-linux-8f0dbfaf2715b80f491c3e23c318c4202abf89e2.zip
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 <florian.vaussard@epfl.ch> Reported-by: Joe Perches <joe@perches.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-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",