From: Naresh Kumar PBS <nareshkumar....@broadcom.com> Address build errors reported by intel compiler while compiling on Windows. Instead of typeof() using the actual type in ALLOW_FUNC
Signed-off-by: Naresh Kumar PBS <nareshkumar....@broadcom.com> Signed-off-by: Ajit Khaparde <ajit.khapa...@broadcom.com> Reviewed-by: Lance Richardson <lance.richard...@broadcom.com> --- drivers/net/bnxt/bnxt_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c index 4dd845992..c76f7d5db 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)); \ } -- 2.20.1 (Apple Git-117)