From: Joe Perches <joe@perches.com>
To: Julius Werner <jwerner@chromium.org>
Cc: Andy Whitcroft <apw@canonical.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCHv2] checkpatch: Allow certain SI units with three characters
Date: Mon, 10 Nov 2014 11:50:17 -0800 [thread overview]
Message-ID: <1415649017.8868.15.camel@perches.com> (raw)
In-Reply-To: <1415648371-10586-1-git-send-email-jwerner@chromium.org>
On Mon, 2014-11-10 at 11:39 -0800, Julius Werner wrote:
> Checkpatch flags CamelCase identifiers in strict mode, but it has a
> feature to ignore parts with only two characters to allow for SI units
> like mV or uA. Unfortunately, not all SI units fit in two characters,
> and not all are lower case followed by upper case.
>
> This patch adds hardcoded detection for frequency and 1024-based size
> units (Hz/KHz/MHz/GHz/THz and KiB/MiB/GiB/TiB), since allowing any three
> character combinations might be too lenient. The list can later be
> expanded as needed.
Seems sensible enough, thanks.
Acked-by: Joe Perches <joe@perches.com>
> Signed-off-by: Julius Werner <jwerner@chromium.org>
> ---
> scripts/checkpatch.pl | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 374abf4..b947c75 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -4056,7 +4056,9 @@ sub process {
> #Ignore Page<foo> variants
> $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
> #Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
> - $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/) {
> + $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
> +#Ignore some three character SI units explicitly, like MiB and KHz
> + $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
> while ($var =~ m{($Ident)}g) {
> my $word = $1;
> next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
prev parent reply other threads:[~2014-11-10 19:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-08 0:18 [PATCH] checkpatch: Make SI unit tolerance more lenient with 3-character units Julius Werner
2014-11-08 0:38 ` Joe Perches
2014-11-10 19:39 ` [PATCHv2] checkpatch: Allow certain SI units with three characters Julius Werner
2014-11-10 19:50 ` Joe Perches [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1415649017.8868.15.camel@perches.com \
--to=joe@perches.com \
--cc=akpm@linux-foundation.org \
--cc=apw@canonical.com \
--cc=jwerner@chromium.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome