From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hemant Subject: Re: [PATCH 07/21] net/atlantic: hardware register access routines Date: Mon, 24 Sep 2018 11:59:44 +0530 Message-ID: <6efadf65-b09e-891f-dfa6-125ec371a30b@nxp.com> References: <1536333719-32155-1-git-send-email-igor.russkikh@aquantia.com> <1536333719-32155-8-git-send-email-igor.russkikh@aquantia.com> Reply-To: hemant.agrawal@nxp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: pavel.belous@aquantia.com, Nadezhda.Krupnina@aquantia.com, Simon.Edelhaus@aquantia.com, Corey Melton , Ashish Kumar To: Igor Russkikh , dev@dpdk.org Return-path: Received: from EUR01-VE1-obe.outbound.protection.outlook.com (mail-ve1eur01on0078.outbound.protection.outlook.com [104.47.1.78]) by dpdk.org (Postfix) with ESMTP id 973EC2B8C for ; Mon, 24 Sep 2018 08:30:04 +0200 (CEST) In-Reply-To: <1536333719-32155-8-git-send-email-igor.russkikh@aquantia.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Igor, On 9/7/2018 8:51 PM, Igor Russkikh wrote: > Signed-off-by: Igor Russkikh > --- > drivers/net/atlantic/atl_hw_regs.c | 58 +++++++++++++++++++++++++++++++++++++ > drivers/net/atlantic/atl_hw_regs.h | 59 ++++++++++++++++++++++++++++++++++++++ > 2 files changed, 117 insertions(+) > create mode 100644 drivers/net/atlantic/atl_hw_regs.c > create mode 100644 drivers/net/atlantic/atl_hw_regs.h > > diff --git a/drivers/net/atlantic/atl_hw_regs.c b/drivers/net/atlantic/atl_hw_regs.c > new file mode 100644 > index 000000000..7301d08e7 > --- /dev/null > +++ b/drivers/net/atlantic/atl_hw_regs.c > @@ -0,0 +1,58 @@ > +/* > + * aQuantia Corporation Network Driver > + * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms and conditions of the GNU General Public License, > + * version 2, as published by the Free Software Foundation. > + */ DPDK is a open source BSD-3 licensed framework. GPL license files are not allowed in DPDK unless: 1. They are part of kernel module (e.g. KNI) 2. They are dual licensed and they support BSD-3 license as well. So, please submit single or dual BSD-3 licensed source code.