mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] checkpatch: don't complain on _Static_assert and _Generic use
@ 2023-11-27 15:18 Przemek Kitszel
  2023-11-28  0:46 ` Joe Perches
  2023-11-29  8:58 ` Rasmus Villemoes
  0 siblings, 2 replies; 6+ messages in thread
From: Przemek Kitszel @ 2023-11-27 15:18 UTC (permalink / raw)
  To: Andy Whitcroft, Joe Perches, linux-kernel
  Cc: Jacob Keller, Dwaipayan Ray, Lukas Bulwahn, Przemek Kitszel

Improve CamelCase recognition logic to avoid reporting on _Static_assert()
and _Generic() use.

Other C keywords, such as _Bool, are intentionally omitted, as those
should be rather avoided in new source code.

Signed-off-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
---
 scripts/checkpatch.pl | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 7d16f863edf1..7f01bc8be2de 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -5839,6 +5839,8 @@ sub process {
 #CamelCase
 			if ($var !~ /^$Constant$/ &&
 			    $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
+#Ignore C keywords
+			    $var !~ /_Static_assert|_Generic/ &&
 #Ignore some autogenerated defines and enum values
 			    $var !~ /^(?:[A-Z]+_){1,5}[A-Z]{1,3}[a-z]/ &&
 #Ignore Page<foo> variants
-- 
2.38.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-11-29  8:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-27 15:18 [PATCH] checkpatch: don't complain on _Static_assert and _Generic use Przemek Kitszel
2023-11-28  0:46 ` Joe Perches
2023-11-28 10:25   ` Przemek Kitszel
2023-11-28 10:52     ` Joe Perches
2023-11-29  0:48     ` Joe Perches
2023-11-29  8:58 ` Rasmus Villemoes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®