From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] devtools: ignore checkpatch warning for maintainers file Date: Fri, 5 Jan 2018 14:33:44 -0800 Message-ID: <20180105143344.1ad48354@xeon-e3> References: <3092823.WoCboBD4Bf@xps> <20180105114302.21635-1-thomas@monjalon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, remy.horton@intel.com To: Thomas Monjalon Return-path: Received: from mail-pl0-f68.google.com (mail-pl0-f68.google.com [209.85.160.68]) by dpdk.org (Postfix) with ESMTP id 5D5D71B00C for ; Fri, 5 Jan 2018 23:33:47 +0100 (CET) Received: by mail-pl0-f68.google.com with SMTP id s3so3861797plp.4 for ; Fri, 05 Jan 2018 14:33:47 -0800 (PST) In-Reply-To: <20180105114302.21635-1-thomas@monjalon.net> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, 5 Jan 2018 12:43:02 +0100 Thomas Monjalon wrote: > The script checkpatch.pl from Linux is enforcing a tab > in the MAINTAINERS file (Linux commit 628f91a28649). > It can be ignored in our wrapper checkpatches.sh. > > Suggested-by: Remy Horton > Signed-off-by: Thomas Monjalon > --- > devtools/checkpatches.sh | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh > index a56c41a30..7676a6b50 100755 > --- a/devtools/checkpatches.sh > +++ b/devtools/checkpatches.sh > @@ -41,7 +41,8 @@ length=${DPDK_CHECKPATCH_LINE_LENGTH:-80} > options="--no-tree" > options="$options --max-line-length=$length" > options="$options --show-types" > -options="$options --ignore=LINUX_VERSION_CODE,FILE_PATH_CHANGES,\ > +options="$options --ignore=LINUX_VERSION_CODE,\ > +FILE_PATH_CHANGES,MAINTAINERS_STYLE,\ > VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,\ > PREFER_KERNEL_TYPES,BIT_MACRO,CONST_STRUCT,\ > SPLIT_STRING,LONG_LINE_STRING,\ Sure that is fine, just make it go away... Acked-by: Stephen Hemminger