From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 48E4D1B16F for ; Fri, 5 Jan 2018 12:43:32 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id ABBED2196D; Fri, 5 Jan 2018 06:43:31 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 05 Jan 2018 06:43:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=mesmtp; bh=1rvHmedFCZGfWJ ueCaS0Jx7TF7pgKC9Y3KLGhOQoM8w=; b=FturGKm4bj+Ys+EGSmuUICU70L+NWc ehMRqPA6dydTIuUeLAgF8Zjbp/6mOfIMYqWKX3zg+LbMeOov0vpq61+Pu4IrOL4h P6uJO3OBRpcNQJze3yVJRYnev4OgoOG4xzgcqcmFBn47jAdRwFCVmAfQoKA4A/AD OKCeG4SEri3io= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=1rvHmedFCZGfWJueCaS0Jx7TF7pgKC9Y3KLGhOQoM8w=; b=hP2WElyu zrMyOisKTyyXzo7LUAVPpVEOehLncRyEWMexDrEu+m5Qrda34PW+m1fZERIeZgLN z9AUBE0eZkRV8UyGLotL4kLqxE+EOVLbHByQ9mVdNrx0ePgVo4W1i1d4uCtJAvnq pYYmFV+tfX2gWrJGJQ6EGfC/HtI+6ERIAf2lEYGuc1Wxo8pej8/FRT6yrnKtpqet ESIl5tdaY85MJRnlh6N7X+qth+P/YHngmJnPaoLKykCPDepNgsjIqJR2ORPXvbPc ynU32GiAKCjARISPFsC/1IR3ohTO3zpeLSA48GwpVybbMFmo64F6Feh356NCJoiB 3AZr5lJQLioRWQ== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 14B342480C; Fri, 5 Jan 2018 06:43:30 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Cc: remy.horton@intel.com, stephen@networkplumber.org Date: Fri, 5 Jan 2018 12:43:02 +0100 Message-Id: <20180105114302.21635-1-thomas@monjalon.net> X-Mailer: git-send-email 2.15.1 In-Reply-To: <3092823.WoCboBD4Bf@xps> References: <3092823.WoCboBD4Bf@xps> Subject: [dpdk-dev] [PATCH] devtools: ignore checkpatch warning for maintainers file X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2018 11:43:32 -0000 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,\ -- 2.15.1