On 03/07/2014 02:26 PM, Florian Vaussard wrote:
> From: Joe Perches <j...@perches.com>
> 
> From: Joe Perches <j...@perches.com>
> 

Mmmh, sorry for this. I will resend.

> Look for ".compatible = "foo" strings not only in .dts files, but
> in .c and .h too.
> 
> Signed-off-by: Joe Perches <j...@perches.com>
> [florian.vauss...@epfl.ch: split patch, commit log]
> Signed-off-by: Florian Vaussard <florian.vauss...@epfl.ch>
> ---
>  scripts/checkpatch.pl | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 96f10ba..9205153 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -2041,8 +2041,10 @@ sub process {
>               }
>  
>  # check for DT compatible documentation
> -             if (defined $root && $realfile =~ /\.dts/ &&
> -                 $rawline =~ /^\+\s*compatible\s*=/) {
> +             if (defined $root &&
> +                     (($realfile =~ /\.dtsi?$/ && $line =~ 
> /^\+\s*compatible\s*=\s*\"/) ||
> +                      ($realfile =~ /\.[ch]$/ && $line =~ 
> /^\+.*\.compatible\s*=\s*\"/))) {
> +
>                       my @compats = $rawline =~ 
> /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
>  
>                       foreach my $compat (@compats) {
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to