From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6BF2FA2F67 for ; Fri, 4 Oct 2019 19:19:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 435061C2B2; Fri, 4 Oct 2019 19:19:46 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id C74681C2A4 for ; Fri, 4 Oct 2019 19:19:43 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Oct 2019 10:19:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,257,1566889200"; d="scan'208";a="217228565" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.2]) by fmsmga004.fm.intel.com with ESMTP; 04 Oct 2019 10:19:42 -0700 From: Bruce Richardson To: dev@dpdk.org, Nicolas Chautru Cc: Akhil Goyal , Andrzej Ostruszka , Bruce Richardson Date: Fri, 4 Oct 2019 18:19:11 +0100 Message-Id: <20191004171913.59574-4-bruce.richardson@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20191004171913.59574-1-bruce.richardson@intel.com> References: <20191004171913.59574-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 3/5] drivers/baseband: remove override of driver names 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" Now that all driver names follow a consistent pattern, remove the override of the name in each driver which adds the prefix. Instead we can just add the prefix at a higher level. Signed-off-by: Bruce Richardson --- drivers/baseband/fpga_lte_fec/meson.build | 1 - drivers/baseband/meson.build | 4 ++-- drivers/baseband/null/meson.build | 1 - drivers/baseband/turbo_sw/meson.build | 1 - 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/baseband/fpga_lte_fec/meson.build b/drivers/baseband/fpga_lte_fec/meson.build index bf44e6bba..c4d3a489a 100644 --- a/drivers/baseband/fpga_lte_fec/meson.build +++ b/drivers/baseband/fpga_lte_fec/meson.build @@ -2,6 +2,5 @@ # Copyright(c) 2019 Intel Corporation deps += ['bbdev', 'bus_vdev', 'ring', 'pci', 'bus_pci'] -name = 'bbdev_fpga_lte_fec' allow_experimental_apis = true sources = files('fpga_lte_fec.c') diff --git a/drivers/baseband/meson.build b/drivers/baseband/meson.build index 03604400e..be7677f87 100644 --- a/drivers/baseband/meson.build +++ b/drivers/baseband/meson.build @@ -3,5 +3,5 @@ drivers = ['null', 'turbo_sw', 'fpga_lte_fec'] -config_flag_fmt = 'RTE_LIBRTE_PMD_@0@' -driver_name_fmt = 'rte_pmd_@0@' +config_flag_fmt = 'RTE_LIBRTE_PMD_BBDEV_@0@' +driver_name_fmt = 'rte_pmd_bbdev_@0@' diff --git a/drivers/baseband/null/meson.build b/drivers/baseband/null/meson.build index 64c29d860..e491c7da4 100644 --- a/drivers/baseband/null/meson.build +++ b/drivers/baseband/null/meson.build @@ -2,6 +2,5 @@ # Copyright(c) 2018 Luca Boccassi deps += ['bbdev', 'bus_vdev', 'ring'] -name = 'bbdev_null' allow_experimental_apis = true sources = files('bbdev_null.c') diff --git a/drivers/baseband/turbo_sw/meson.build b/drivers/baseband/turbo_sw/meson.build index 1a1f7c9a9..21c3cf819 100644 --- a/drivers/baseband/turbo_sw/meson.build +++ b/drivers/baseband/turbo_sw/meson.build @@ -36,6 +36,5 @@ if dpdk_conf.has('RTE_BBDEV_SDK_AVX512') endif deps += ['bbdev', 'bus_vdev', 'ring'] -name = 'bbdev_turbo_sw' allow_experimental_apis = true sources = files('bbdev_turbo_software.c') -- 2.21.0