Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751788AbcDUN2S (ORCPT ); Thu, 21 Apr 2016 09:28:18 -0400 Received: from mailgw01.mediatek.com ([210.61.82.183]:17210 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751657AbcDUN2R (ORCPT ); Thu, 21 Apr 2016 09:28:17 -0400 From: Yingjoe Chen To: Andy Whitcroft , Joe Perches CC: , , Yingjoe Chen Subject: [PATCH 1/3] checkpatch: add Kconfig 'default n' test Date: Thu, 21 Apr 2016 21:28:03 +0800 Message-ID: <1461245285-14918-1-git-send-email-yingjoe.chen@mediatek.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 924 Lines: 30 If a Kconfig config option doesn't specify 'default', the default will be n. Adding 'default n' is unnecessary. Add a test to warn about this. Signed-off-by: Yingjoe Chen --- scripts/checkpatch.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index d574d13..1c43dc1 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2600,6 +2600,13 @@ sub process { "Use of boolean is deprecated, please use bool instead.\n" . $herecurr); } +# discourage the use of default n + if ($realfile =~ /Kconfig/ && + $line =~ /^\+\s*\bdefault\b\s*n\s*$/) { + WARN("CONFIG_DEFAULT_N", + "Use of default n is unnecessary, default is n when omitted.\n" . $herecurr); + } + if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) && ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) { my $flag = $1; -- 1.9.1