From patchwork Thu Sep 14 15:57:57 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 28743 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 8B0C91AEEE; Thu, 14 Sep 2017 17:58:14 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 3E60B1AEEE for ; Thu, 14 Sep 2017 17:58:13 +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:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,393,1500966000"; d="scan'208";a="311704844" 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:11 -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:57 +0100 Message-Id: <20170914155757.94636-3-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 2/2] net/xenvirt: 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/xenvirt/Makefile | 2 +- .../{rte_eth_xenvirt_version.map => rte_pmd_xenvirt_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/net/xenvirt/{rte_eth_xenvirt_version.map => rte_pmd_xenvirt_version.map} (100%) diff --git a/drivers/net/xenvirt/Makefile b/drivers/net/xenvirt/Makefile index 8b4b8f037..bf5db050f 100644 --- a/drivers/net/xenvirt/Makefile +++ b/drivers/net/xenvirt/Makefile @@ -40,7 +40,7 @@ CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) LDLIBS += -lxenstore -EXPORT_MAP := rte_eth_xenvirt_version.map +EXPORT_MAP := rte_pmd_xenvirt_version.map LIBABIVER := 1 diff --git a/drivers/net/xenvirt/rte_eth_xenvirt_version.map b/drivers/net/xenvirt/rte_pmd_xenvirt_version.map similarity index 100% rename from drivers/net/xenvirt/rte_eth_xenvirt_version.map rename to drivers/net/xenvirt/rte_pmd_xenvirt_version.map