aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
authorChristoph Jaeger <cj@linux.com>2015-02-13 17:38:29 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2015-02-14 00:21:39 -0500
commit327953e9af6c59ad111b28359e59e3ec0cbd71b6 (patch)
tree104db466e4293b3c0f0e1f67c5e841251a151345 /scripts/checkpatch.pl
parentdcaf112365369c3b55bfc37edb634dba32dde57e (diff)
checkpatch: add check for keyword 'boolean' in Kconfig definitions
Discourage the use of keyword 'boolean' for type definition attributes of config options as support for it will be dropped later on. See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com Signed-off-by: Christoph Jaeger <cj@linux.com> Suggested-by: Daniel Borkmann <dborkman@redhat.com> Cc: Joe Perches <joe@perches.com> Acked-by: Paul Bolle <pebolle@tiscali.nl> Tested-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index f130c93a5656..6afc24ba77a6 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2357,6 +2357,13 @@ sub process {
2357 "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n"); 2357 "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
2358 } 2358 }
2359 2359
2360# discourage the use of boolean for type definition attributes of Kconfig options
2361 if ($realfile =~ /Kconfig/ &&
2362 $line =~ /^\+\s*\bboolean\b/) {
2363 WARN("CONFIG_TYPE_BOOLEAN",
2364 "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2365 }
2366
2360 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) && 2367 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2361 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) { 2368 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2362 my $flag = $1; 2369 my $flag = $1;