common/cnxk: convert warning to debug print
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@marvell.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
This commit is contained in:
parent
f5a4327049
commit
24d37e0761
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user