From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Vaussard Subject: [PATCH v3 3/4] checkpatch: check compatible strings in .c and .h too Date: Fri, 7 Mar 2014 14:26:10 +0100 Message-ID: <1394198771-25913-4-git-send-email-florian.vaussard@epfl.ch> References: <1394198771-25913-1-git-send-email-florian.vaussard@epfl.ch> Return-path: In-Reply-To: <1394198771-25913-1-git-send-email-florian.vaussard@epfl.ch> Sender: linux-kernel-owner@vger.kernel.org To: Andy Whitcroft , Joe Perches Cc: Rob Herring , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org List-Id: devicetree@vger.kernel.org From: Joe Perches From: Joe Perches Look for ".compatible = "foo" strings not only in .dts files, but in .c and .h too. Signed-off-by: Joe Perches [florian.vaussard@epfl.ch: split patch, commit log] Signed-off-by: Florian Vaussard --- 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) { -- 1.8.5.3