Renaming files as part of refactor to have generic intel vRAN Boost PMD (vrb) whose acc200 is only one variant.
Signed-off-by: Nicolas Chautru <nicolas.chau...@intel.com> --- drivers/baseband/acc/meson.build | 2 +- drivers/baseband/acc/rte_acc100_pmd.c | 2 +- drivers/baseband/acc/{rte_acc200_pmd.c => rte_vrb_pmd.c} | 2 +- drivers/baseband/acc/{acc200_cfg.h => vrb_cfg.h} | 6 +++--- drivers/baseband/acc/{acc200_pmd.h => vrb_pmd.h} | 8 ++++---- 5 files changed, 10 insertions(+), 10 deletions(-) rename drivers/baseband/acc/{rte_acc200_pmd.c => rte_vrb_pmd.c} (99%) rename drivers/baseband/acc/{acc200_cfg.h => vrb_cfg.h} (90%) rename drivers/baseband/acc/{acc200_pmd.h => vrb_pmd.h} (98%) diff --git a/drivers/baseband/acc/meson.build b/drivers/baseband/acc/meson.build index 77c393b533..966cd65c79 100644 --- a/drivers/baseband/acc/meson.build +++ b/drivers/baseband/acc/meson.build @@ -3,6 +3,6 @@ deps += ['bbdev', 'bus_pci'] -sources = files('rte_acc100_pmd.c', 'rte_acc200_pmd.c') +sources = files('rte_acc100_pmd.c', 'rte_vrb_pmd.c') headers = files('rte_acc_cfg.h') diff --git a/drivers/baseband/acc/rte_acc100_pmd.c b/drivers/baseband/acc/rte_acc100_pmd.c index b3164529dd..e5fe27a06b 100644 --- a/drivers/baseband/acc/rte_acc100_pmd.c +++ b/drivers/baseband/acc/rte_acc100_pmd.c @@ -21,7 +21,7 @@ #include <rte_bbdev_pmd.h> #include "acc100_pmd.h" #include "acc101_pmd.h" -#include "acc200_cfg.h" +#include "vrb_cfg.h" #ifdef RTE_LIBRTE_BBDEV_DEBUG RTE_LOG_REGISTER_DEFAULT(acc100_logtype, DEBUG); diff --git a/drivers/baseband/acc/rte_acc200_pmd.c b/drivers/baseband/acc/rte_vrb_pmd.c similarity index 99% rename from drivers/baseband/acc/rte_acc200_pmd.c rename to drivers/baseband/acc/rte_vrb_pmd.c index 204f37349b..8e61847dd2 100644 --- a/drivers/baseband/acc/rte_acc200_pmd.c +++ b/drivers/baseband/acc/rte_vrb_pmd.c @@ -19,7 +19,7 @@ #include <rte_bbdev.h> #include <rte_bbdev_pmd.h> -#include "acc200_pmd.h" +#include "vrb_pmd.h" #ifdef RTE_LIBRTE_BBDEV_DEBUG RTE_LOG_REGISTER_DEFAULT(acc200_logtype, DEBUG); diff --git a/drivers/baseband/acc/acc200_cfg.h b/drivers/baseband/acc/vrb_cfg.h similarity index 90% rename from drivers/baseband/acc/acc200_cfg.h rename to drivers/baseband/acc/vrb_cfg.h index d77506b560..2b31244818 100644 --- a/drivers/baseband/acc/acc200_cfg.h +++ b/drivers/baseband/acc/vrb_cfg.h @@ -2,8 +2,8 @@ * Copyright(c) 2022 Intel Corporation */ -#ifndef _ACC200_CFG_H_ -#define _ACC200_CFG_H_ +#ifndef _VRB_CFG_H_ +#define _VRB_CFG_H_ /** * @file acc200_cfg.h @@ -29,4 +29,4 @@ int acc200_configure(const char *dev_name, struct rte_acc_conf *conf); -#endif /* _ACC200_CFG_H_ */ +#endif /* _VRB_CFG_H_ */ diff --git a/drivers/baseband/acc/acc200_pmd.h b/drivers/baseband/acc/vrb_pmd.h similarity index 98% rename from drivers/baseband/acc/acc200_pmd.h rename to drivers/baseband/acc/vrb_pmd.h index f3f2627ae9..c37bd4d57b 100644 --- a/drivers/baseband/acc/acc200_pmd.h +++ b/drivers/baseband/acc/vrb_pmd.h @@ -2,13 +2,13 @@ * Copyright(c) 2022 Intel Corporation */ -#ifndef _RTE_ACC200_PMD_H_ -#define _RTE_ACC200_PMD_H_ +#ifndef _VRB_PMD_H_ +#define _VRB_PMD_H_ #include "acc_common.h" #include "acc200_pf_enum.h" #include "acc200_vf_enum.h" -#include "acc200_cfg.h" +#include "vrb_cfg.h" /* Helper macro for logging */ #define rte_bbdev_log(level, fmt, ...) \ @@ -193,4 +193,4 @@ static const struct acc200_registry_addr vf_reg_addr = { .pmon_ctrl_c = HWVfPmCCntrlRegVf, }; -#endif /* _RTE_ACC200_PMD_H_ */ +#endif /* _VRB_PMD_H_ */ -- 2.34.1