From patchwork Thu Sep 14 15:57:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 28742 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 94E437D4E; Thu, 14 Sep 2017 17:58:10 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id A07971041 for ; Thu, 14 Sep 2017 17:58:09 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Sep 2017 08:58:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,393,1500966000"; d="scan'208";a="311704821" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga004.fm.intel.com with ESMTP; 14 Sep 2017 08:58:06 -0700 From: Bruce Richardson To: ferruh.yigit@intel.com, jianfeng.tan@intel.com, declan.doherty@intel.com Cc: dev@dpdk.org, Bruce Richardson Date: Thu, 14 Sep 2017 16:57:56 +0100 Message-Id: <20170914155757.94636-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.13.5 In-Reply-To: <20170914155757.94636-1-bruce.richardson@intel.com> References: <20170914155757.94636-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 1/2] net/bonding: rename map file to standard name 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Naming convention for net drivers is "rte_pmd__version.map" Signed-off-by: Bruce Richardson --- drivers/net/bonding/Makefile | 2 +- .../net/bonding/{rte_eth_bond_version.map => rte_pmd_bond_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/net/bonding/{rte_eth_bond_version.map => rte_pmd_bond_version.map} (100%) diff --git a/drivers/net/bonding/Makefile b/drivers/net/bonding/Makefile index 910c932da..ab8b6894a 100644 --- a/drivers/net/bonding/Makefile +++ b/drivers/net/bonding/Makefile @@ -39,7 +39,7 @@ LIB = librte_pmd_bond.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) -EXPORT_MAP := rte_eth_bond_version.map +EXPORT_MAP := rte_pmd_bond_version.map LIBABIVER := 1 diff --git a/drivers/net/bonding/rte_eth_bond_version.map b/drivers/net/bonding/rte_pmd_bond_version.map similarity index 100% rename from drivers/net/bonding/rte_eth_bond_version.map rename to drivers/net/bonding/rte_pmd_bond_version.map