Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751693AbdLUIja (ORCPT ); Thu, 21 Dec 2017 03:39:30 -0500 Received: from mail-io0-f179.google.com ([209.85.223.179]:40271 "EHLO mail-io0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751525AbdLUIj3 (ORCPT ); Thu, 21 Dec 2017 03:39:29 -0500 X-Google-Smtp-Source: ACJfBotnRa4enHG0JJbIkWR+KtcAvR20iXh1Ysbcp/MQDYWJmhDyZi9BZooQfObqv8Sd+68kw/4nZw== Date: Thu, 21 Dec 2017 16:39:21 +0800 From: Leo Yan To: Andy Whitcroft , Joe Perches , linux-kernel@vger.kernel.org Subject: Re: [PATCH] checkpatch: Make '$min_conf_desc_length' default value to 1 Message-ID: <20171221083921.GB12585@leoy-linaro> References: <1510994922-9751-1-git-send-email-leo.yan@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1510994922-9751-1-git-send-email-leo.yan@linaro.org> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 985 Lines: 31 On Sat, Nov 18, 2017 at 04:48:42PM +0800, Leo Yan wrote: > Make '$min_conf_desc_length' default value from 4 to 1; so can give more > relax check for Kconfig description has at least one line rather than > four lines. > > User can still pass parameter "--min-conf-desc-length=X" to set more > strict check. Gentle ping. > Signed-off-by: Leo Yan > --- > scripts/checkpatch.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index 6050323..1dd5366 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -51,7 +51,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 = 1; > my $spelling_file = "$D/spelling.txt"; > my $codespell = 0; > my $codespellfile = "/usr/share/codespell/dictionary.txt"; > -- > 2.7.4 >