From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] relicense various bits of the dpdk Date: Fri, 05 Jan 2018 11:53:55 +0100 Message-ID: <2299181.I1Ls4326eD@xps> References: <20171204155557.31915-1-nhorman@tuxdriver.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, Hemant Agrawal To: Neil Horman Return-path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 2624F1B16F for ; Fri, 5 Jan 2018 11:54:18 +0100 (CET) In-Reply-To: <20171204155557.31915-1-nhorman@tuxdriver.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 04/12/2017 16:55, Neil Horman: > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2015 Neil Horman. All rights reserved. > +# Copyright(c) 2017 6WIND S.A. > +# All rights reserved [...] > /*- > - * BSD LICENSE > + * SPDX-License-Identifier: BSD-3-Clause > * > * Copyright(c) 2015 Neil Horman . > * All rights reserved. > * > */ Other SPDX headers use only one space after # or *, and no empty line. Also, SPDX should be on the first line (except for scripts): /* SPDX-License-Identifier: BSD-3-Clause Please, let's take this opportunity to have consistent headers. Thanks