From bce33776a72a0b52d78999d8786099a916d48320 Mon Sep 17 00:00:00 2001 From: Rahul Bhansali Date: Mon, 20 Dec 2021 18:56:25 +0530 Subject: [PATCH] common/cnxk: update NIX and NPA dump functions Updates nix_dump and npa_dump to use plt_dump function. Signed-off-by: Rahul Bhansali Acked-by: Jerin Jacob --- drivers/common/cnxk/roc_nix_debug.c | 4 ++-- drivers/common/cnxk/roc_npa_debug.c | 2 +- drivers/common/cnxk/roc_platform.h | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/common/cnxk/roc_nix_debug.c b/drivers/common/cnxk/roc_nix_debug.c index 583e2e43c8..d5143882f5 100644 --- a/drivers/common/cnxk/roc_nix_debug.c +++ b/drivers/common/cnxk/roc_nix_debug.c @@ -5,14 +5,14 @@ #include "roc_api.h" #include "roc_priv.h" -#define nix_dump(fmt, ...) fprintf(stderr, fmt "\n", ##__VA_ARGS__) +#define nix_dump plt_dump #define NIX_REG_INFO(reg) \ { \ reg, #reg \ } #define NIX_REG_NAME_SZ 48 -#define nix_dump_no_nl(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__) +#define nix_dump_no_nl plt_dump_no_nl struct nix_lf_reg_info { uint32_t offset; diff --git a/drivers/common/cnxk/roc_npa_debug.c b/drivers/common/cnxk/roc_npa_debug.c index 421c2af8a5..798ace291c 100644 --- a/drivers/common/cnxk/roc_npa_debug.c +++ b/drivers/common/cnxk/roc_npa_debug.c @@ -5,7 +5,7 @@ #include "roc_api.h" #include "roc_priv.h" -#define npa_dump(fmt, ...) fprintf(stderr, fmt "\n", ##__VA_ARGS__) +#define npa_dump plt_dump static inline void npa_pool_dump(__io struct npa_pool_s *pool) diff --git a/drivers/common/cnxk/roc_platform.h b/drivers/common/cnxk/roc_platform.h index 68f29fe48e..adfb88c68d 100644 --- a/drivers/common/cnxk/roc_platform.h +++ b/drivers/common/cnxk/roc_platform.h @@ -213,6 +213,7 @@ extern int cnxk_logtype_ree; #define plt_warn(fmt, args...) RTE_LOG(WARNING, PMD, fmt "\n", ##args) #define plt_print(fmt, args...) RTE_LOG(INFO, PMD, fmt "\n", ##args) #define plt_dump(fmt, ...) fprintf(stderr, fmt "\n", ##__VA_ARGS__) +#define plt_dump_no_nl(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__) /** * Log debug message if given subsystem logging is enabled. -- 2.39.5