From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id E6D63324B for ; Mon, 9 Jul 2018 23:07:32 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 3B2A920F1D; Mon, 9 Jul 2018 17:07:32 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 09 Jul 2018 17:07:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=2DaQisJTjwmhInYZx4jBpUd0uz swUMufloaajCF80z0=; b=MMTpW871pJNO47+KJv4t1h78xmojtOOo6TLytNulHq 0um/Vl5yYSUoPrDSAPOi8IucsDWxfAqJgrMZWRaObekB1Q6yxa9+m3S6VZBrr0uy KYGv1lH+cssA7y53HlGqSjEQaPG+1Q6EwGTt/9A5jgqdpHa4XWBIjpVqvYES5+zn U= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=2DaQis JTjwmhInYZx4jBpUd0uzswUMufloaajCF80z0=; b=C6w284mr5ciu2qohdcag6s 0iPf+OoY+blXjs0hLEhJyMvfx0blxlvNIIHQsriU61qivdRvOLaN73IJJD4CUlKO 2jBYQerwqSaL3w2IFMxpsqXVpJSdEOobpuVDJ9lxS8i/WEdpMuQCtsEAdKCEozJO 2vCiaaUySNNUhmzKiZTN06fsDnmQk+bBC4VAzRugEHKmL/wW2r1rrKp+bzOmEOvy KyignxXGfhNDDQWKotjeLKOdTL/qW9lcQggfw0lg+zWVhNsjvPLYhrtZVvafiEK2 aNurLirX2U4caqM2cKfFSLy7JiRIh4kimDytkSEhy3GjxP1+RtToH6+GV2X3MH0w == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 7A28AE4AB8; Mon, 9 Jul 2018 17:07:30 -0400 (EDT) From: Thomas Monjalon To: Rasesh Mody Cc: dev@dpdk.org, hemant.agrawal@nxp.com, ferruh.yigit@intel.com, Dept-EngDPDKDev@cavium.com Date: Mon, 09 Jul 2018 23:07:27 +0200 Message-ID: <6990726.I9aQltfJUb@xps> In-Reply-To: <1531027497-31483-1-git-send-email-rasesh.mody@cavium.com> References: <1531027497-31483-1-git-send-email-rasesh.mody@cavium.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/bnx2x: move SPDX tags to source files 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: Mon, 09 Jul 2018 21:07:33 -0000 Hi, 08/07/2018 07:24, Rasesh Mody: > We were using LICENSE.bnx2x_pmd to reference inclusion of SPDX licensing > tag from all the source file. Remove the LICENSE.bnx2x_pmd file and > directly include SPDX tags in source files. > > Signed-off-by: Rasesh Mody > --- a/drivers/net/bnx2x/Makefile > +++ b/drivers/net/bnx2x/Makefile > @@ -2,7 +2,7 @@ > # All rights reserved. > # www.cavium.com > # > -# See LICENSE.bnx2x_pmd for copyright and licensing details. > +# SPDX-License-Identifier: BSD-3-Clause The SPDX line should be the first line. You can take a look at doc/guides/contributing/patches.rst Thanks