From: Naresh Kumar PBS Date: Sat, 8 Jun 2019 19:22:08 +0000 (+0400) Subject: net/bnxt: fix icc build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bc77ad80e619637d5e4f9cdfda9fca8d7dc1bef9;p=dpdk.git net/bnxt: fix icc build Address build errors reported by intel compiler while compiling on Windows. Instead of typeof() using the actual type in ALLOW_FUNC Cc: stable@dpdk.org Signed-off-by: Naresh Kumar PBS Signed-off-by: Ajit Khaparde Reviewed-by: Lance Richardson --- diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c index 12fb0a76e0..5f9c096a7d 100644 --- a/drivers/net/bnxt/bnxt_ethdev.c +++ b/drivers/net/bnxt/bnxt_ethdev.c @@ -3639,7 +3639,7 @@ int bnxt_alloc_ctx_mem(struct bnxt *bp) #define ALLOW_FUNC(x) \ { \ - typeof(x) arg = (x); \ + uint32_t arg = (x); \ bp->pf.vf_req_fwd[((arg) >> 5)] &= \ ~rte_cpu_to_le_32(1 << ((arg) & 0x1f)); \ }