From: Ferruh Yigit Date: Tue, 7 Nov 2017 23:38:11 +0000 (+0000) Subject: net/qede: fix icc build X-Git-Tag: spdx-start~884 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e8f8f595188b155a2a08009e895dd8654a93f015;p=dpdk.git net/qede: fix icc build observed icc version "icc (ICC) 18.0.0 20170811" build error: .../dpdk/drivers/net/qede/qede_ethdev.c(1475): error #279: controlling expression is constant assert(false && "Unable to start periodic timer"); ^ Warning disabled in Makefile. Fixes: 2af14ca79c0a ("net/qede: support 100G") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit --- diff --git a/drivers/net/qede/Makefile b/drivers/net/qede/Makefile index a166e9fa89..ccbffa45d2 100644 --- a/drivers/net/qede/Makefile +++ b/drivers/net/qede/Makefile @@ -72,8 +72,9 @@ CFLAGS_BASE_DRIVER += -Wno-sometimes-uninitialized ifeq ($(shell clang -Wno-pointer-bool-conversion -Werror -E - < /dev/null > /dev/null 2>&1; echo $$?),0) CFLAGS_BASE_DRIVER += -Wno-pointer-bool-conversion endif -else -CFLAGS_BASE_DRIVER += -wd188 #188: enumerated type mixed with another type +else #ICC +CFLAGS_BASE_DRIVER += -wd188 #188: enumerated type mixed with another type +CFLAGS_qede_ethdev.o += -wd279 #279: controlling expression is constant endif #