From patchwork Fri Apr 22 14:32:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yingjoe Chen X-Patchwork-Id: 66454 Delivered-To: patch@linaro.org Received: by 10.140.93.198 with SMTP id d64csp756043qge; Fri, 22 Apr 2016 07:32:39 -0700 (PDT) X-Received: by 10.66.232.226 with SMTP id tr2mr29038296pac.44.1461335558982; Fri, 22 Apr 2016 07:32:38 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id vq9si7970066pab.209.2016.04.22.07.32.38; Fri, 22 Apr 2016 07:32:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754347AbcDVOcb (ORCPT + 29 others); Fri, 22 Apr 2016 10:32:31 -0400 Received: from mailgw02.mediatek.com ([210.61.82.184]:5706 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1754285AbcDVOc3 (ORCPT ); Fri, 22 Apr 2016 10:32:29 -0400 Received: from mtkhts09.mediatek.inc [(172.21.101.70)] by mailgw02.mediatek.com (envelope-from ) (mhqrelay.mediatek.com ESMTP with TLS) with ESMTP id 806828456; Fri, 22 Apr 2016 22:32:25 +0800 Received: from mtksdtcf02.mediatek.inc (10.21.12.142) by mtkhts09.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 14.3.266.1; Fri, 22 Apr 2016 22:32:23 +0800 From: Yingjoe Chen To: Andy Whitcroft , Joe Perches CC: , Andi Kleen , Paul Bolle , , Yingjoe Chen Subject: [PATCH v2 3/3] checkpatch: relax Kconfig help text line number threshold Date: Fri, 22 Apr 2016 22:32:07 +0800 Message-ID: <1461335527-19270-3-git-send-email-yingjoe.chen@mediatek.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1461335527-19270-1-git-send-email-yingjoe.chen@mediatek.com> References: <1461335527-19270-1-git-send-email-yingjoe.chen@mediatek.com> MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Current threshold is too strict and many upstream patch doesn't pass this test. Relax it. Signed-off-by: Yingjoe Chen --- In v4.6-rc1, 171 new config options was added, and 87 of those options have < 4 lines and 24 options have only 1 line. After this change, checkpatch only raise warning when help text only contain 1 line. Some options try to workaround this check by adding 2 lines template like 'If you have this device...' which doesn't add value. --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 403ebbc..4bfb23b 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -47,7 +47,7 @@ my $configuration_file = ".checkpatch.conf"; my $max_line_length = 80; my $ignore_perl_version = 0; my $minimum_perl_version = 5.10.0; -my $min_conf_desc_length = 4; +my $min_conf_desc_length = 2; my $spelling_file = "$D/spelling.txt"; my $codespell = 0; my $codespellfile = "/usr/share/codespell/dictionary.txt";