mempool/octeontx2: fix build
authorTao Zhu <taox.zhu@intel.com>
Mon, 17 Feb 2020 16:43:45 +0000 (16:43 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 17 Feb 2020 18:29:10 +0000 (19:29 +0100)
commitbc3282125b72ccfe8641f0826955a384f40ca775
treeca69a7ddd0d503c23169e7393a24895f0414d6fb
parent914397d6c1141235b48ca60249221976e9e08feb
mempool/octeontx2: fix build

Change the definition of C99 style to C90 style.
compile log as below:

otx2_mempool_ops.c: In function ‘otx2_npa_populate’:
drivers/mempool/octeontx2/otx2_mempool_ops.c:790:2: error:
‘for’ loop initial declarations are only allowed in C99 mode
  for (int i = 0; i < OTX2_L1D_NB_SETS; i++)
  ^
drivers/mempool/octeontx2/otx2_mempool_ops.c:790:2:
note: use option -std=c99 or -std=gnu99 to compile your code

Fixes: 9ed8e95c ("mempool/octeontx2: optimize for L1D cache architecture")

Signed-off-by: Tao Zhu <taox.zhu@intel.com>
Reviewed-by: Jerin Jacob <jerinj@marvell.com>
drivers/mempool/octeontx2/otx2_mempool_ops.c