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>
# 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')
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@'
# 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')
endif
deps += ['bbdev', 'bus_vdev', 'ring']
-name = 'bbdev_turbo_sw'
allow_experimental_apis = true
sources = files('bbdev_turbo_software.c')