&device requires the %u format specifer not the %d specifier, as
&device is unsigned.

Fixes: a46bbb57605b ("net/bnxt: update multi device design")
Cc: sta...@dpdk.org

Signed-off-by: Ajit Khaparde <ajit.khapa...@broadcom.com>
---
 drivers/net/bnxt/tf_core/tf_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/bnxt/tf_core/tf_core.c 
b/drivers/net/bnxt/tf_core/tf_core.c
index 24d49096a..3409cbbce 100644
--- a/drivers/net/bnxt/tf_core/tf_core.c
+++ b/drivers/net/bnxt/tf_core/tf_core.c
@@ -82,7 +82,7 @@ tf_open_session(struct tf *tfp,
                return rc;
 
        TFP_DRV_LOG(INFO,
-                   "domain:%d, bus:%d, device:%d\n",
+                   "domain:%d, bus:%d, device:%u\n",
                    parms->session_id.internal.domain,
                    parms->session_id.internal.bus,
                    parms->session_id.internal.device);
-- 
2.21.1 (Apple Git-122.3)

Reply via email to