[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1f3b50a6f343dd252c043b2e5b7d47bca8514ee7.camel@perches.com>
Date: Sun, 20 Dec 2020 11:16:11 -0800
From: Joe Perches <joe@...ches.com>
To: Nicolai Fischer <nicolai.fischer@....de>,
linux-kernel@...r.kernel.org
Cc: apw@...onical.com, johannes.czekay@....de,
linux-kernel@...cs.fau.de
Subject: Re: [PATCH 2/2] checkpatch: kconfig: add missing types to regex
On Mon, 2020-12-14 at 11:24 +0100, Nicolai Fischer wrote:
> Kconfig parsing does not recognise all type attributes.
> This adds the missing 'int', 'sting' and 'hex' types.
[]
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -3321,7 +3321,7 @@ sub process {
> next if ($f =~ /^-/);
> last if (!$file && $f =~ /^\@\@/);
>
>
> - if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
> + if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|int|hex|string|prompt)\s*["']/) {
> $is_start = 1;
> } elsif ($lines[$ln - 1] =~ /^\+\s*help$/) {
> $length = -1;
Another thing that could be done is to enforce the "extra 2 spaces"
indent by capturing the whitespace before the help keyword:
} elsif ($lines[$ln - 1] =~ /^\+\s*help$/) {
could be
} elsif ($lines[$ln - 1] =~ /^\+(\s*)help\s*$/) {
with $1 used to validate the extra indent.
Powered by blists - more mailing lists