drivers/net/octeontx/base/octeontx_pkovf.c(527):
error #592: variable "i" is used before its value is set
RTE_SET_USED(i);
Fixes: ab4f789560c4 ("net/octeontx/base: probe PKI and PKO PCIe VF devices")
Signed-off-by: Pablo de Lara <[email protected]>
---
drivers/net/octeontx/base/octeontx_pkovf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/octeontx/base/octeontx_pkovf.c
b/drivers/net/octeontx/base/octeontx_pkovf.c
index cbcc006..f0fb930 100644
--- a/drivers/net/octeontx/base/octeontx_pkovf.c
+++ b/drivers/net/octeontx/base/octeontx_pkovf.c
@@ -522,10 +522,10 @@ static void
octeontx_pkovf_setup(void)
{
static bool init_once;
- int i;
- RTE_SET_USED(i);
if (!init_once) {
+ unsigned int i;
+
rte_spinlock_init(&pko_vf_ctl.lock);
pko_vf_ctl.fc_iomem = PKO_IOMEM_NULL;
--
2.9.4