[PATCH v5 08/28] common/cnxk: convert warning to debug print
Nithin Dabilpuram
ndabilpuram at marvell.com
Sun May 8 09:48:19 CEST 2022
From: Akhil Goyal <gakhil at marvell.com>
Inbound SA SPI if not in min-max range specified in devargs,
was marked as a warning. But this is not converted to debug
print because if the entry is found to be duplicate in the mask,
it will give another error print. Hence, warning print is not needed
and is now converted to debug print.
Signed-off-by: Akhil Goyal <gakhil at marvell.com>
---
drivers/common/cnxk/roc_nix_inl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/common/cnxk/roc_nix_inl.c b/drivers/common/cnxk/roc_nix_inl.c
index a66fbcd..9b8b6da 100644
--- a/drivers/common/cnxk/roc_nix_inl.c
+++ b/drivers/common/cnxk/roc_nix_inl.c
@@ -231,7 +231,7 @@ roc_nix_inl_inb_sa_get(struct roc_nix *roc_nix, bool inb_inl_dev, uint32_t spi)
mask = roc_nix_inl_inb_spi_range(roc_nix, inb_inl_dev, &min_spi,
&max_spi);
if (spi > max_spi || spi < min_spi)
- plt_warn("Inbound SA SPI %u not in range (%u..%u)", spi,
+ plt_nix_dbg("Inbound SA SPI %u not in range (%u..%u)", spi,
min_spi, max_spi);
/* Basic logic of SPI->SA for now */
--
2.8.4
More information about the dev
mailing list