diff options
author | Florian Vaussard <florian.vaussard@epfl.ch> | 2014-04-03 14:49:24 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 16:21:14 -0700 |
commit | 8f0dbfaf2715b80f491c3e23c318c4202abf89e2 (patch) | |
tree | e574c770d90d52b31ce9762be181e89fbd6782ec | |
parent | 515a235ef9bcd31faa672740720936b22fa99c0e (diff) | |
download | linux-8f0dbfaf2715b80f491c3e23c318c4202abf89e2.tar.gz linux-8f0dbfaf2715b80f491c3e23c318c4202abf89e2.tar.bz2 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>
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
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", |