diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/lint/checkpatch.pl | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/util/lint/checkpatch.pl b/util/lint/checkpatch.pl index e88461fc7c..a8a91e8ea1 100755 --- a/util/lint/checkpatch.pl +++ b/util/lint/checkpatch.pl @@ -3245,13 +3245,6 @@ sub process { } } -# discourage the use of boolean for type definition attributes of Kconfig options - if ($realfile =~ /Kconfig/ && - $line =~ /^\+\s*\bboolean\b/) { - WARN("CONFIG_TYPE_BOOLEAN", - "Use of boolean is deprecated, please use bool instead.\n" . $herecurr); - } - if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) && ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) { my $flag = $1; |