]> git.droids-corp.org - dpdk.git/commitdiff
drivers/baseband: remove override of driver names
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 4 Oct 2019 17:19:11 +0000 (18:19 +0100)
committerAkhil Goyal <akhil.goyal@nxp.com>
Wed, 9 Oct 2019 09:50:12 +0000 (11:50 +0200)
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 <bruce.richardson@intel.com>
drivers/baseband/fpga_lte_fec/meson.build
drivers/baseband/meson.build
drivers/baseband/null/meson.build
drivers/baseband/turbo_sw/meson.build

index bf44e6bbabfa96eac63dfe4e9d1ae363d53f6c88..c4d3a489a9d3c15d6a49e00d8fdd376a8154b6f8 100644 (file)
@@ -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')
index 03604400e6fe5cf8cb1f4c93f225ec7d0084c5ee..be7677f874b7681826f5fd90fbb2277aada8d92c 100644 (file)
@@ -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@'
index 64c29d8600848ddeb9edb3ef8ec01016a5d454a4..e491c7da4a210bafebd2b96ce0a3182707b2e93a 100644 (file)
@@ -2,6 +2,5 @@
 # Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
 
 deps += ['bbdev', 'bus_vdev', 'ring']
-name = 'bbdev_null'
 allow_experimental_apis = true
 sources = files('bbdev_null.c')
index 1a1f7c9a951d385ce7386eae948df08eb2f370eb..21c3cf819a45b28140512433e7c162b0af48567a 100644 (file)
@@ -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')