i40e/base: fix build with icc

Below compile error can be found on ICC 13.0.0, which is a warning
treated as error. Forcedly disabling the warning can fix it.

Error log:
lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated
type mixed with another type
hw->aq.asq_last_status = old_asq_status;
                       ^

Fixes: 3b7271f395 ("i40e/base: catch NVM write semaphore timeout and retry")

Signed-off-by: Helin Zhang <helin.zhang@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Tetsuya Mukawa <mukawa@igel.co.jp>
This commit is contained in:
Helin Zhang 2015-05-18 23:40:55 +08:00 committed by Thomas Monjalon
parent 067855e651
commit 01eca0fae9

View File

@ -48,7 +48,7 @@ LIBABIVER := 1
# to disable warnings
#
ifeq ($(CC), icc)
CFLAGS_BASE_DRIVER = -wd593
CFLAGS_BASE_DRIVER = -wd593 -wd188
else ifeq ($(CC), clang)
CFLAGS_BASE_DRIVER += -Wno-sign-compare
CFLAGS_BASE_DRIVER += -Wno-unused-value