drivers/baseband: remove override of driver names

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>
This commit is contained in:
Bruce Richardson 2019-10-04 18:19:11 +01:00 committed by Akhil Goyal
parent 6124ad4b86
commit fd05e96266
4 changed files with 2 additions and 5 deletions

View 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')

View 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@'

View 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')

View 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')