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 bf44e6b..c4d3a48 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 0360440..be7677f 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 64c29d8..e491c7d 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 1a1f7c9..21c3cf8 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')