From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: [PATCH] bnx2x: fix ICC compilation error Date: Mon, 13 Jun 2016 11:47:19 +0100 Message-ID: <1465814839-31304-1-git-send-email-ferruh.yigit@intel.com> References: <575A91A6.9030605@intel.com> Cc: Rasesh Mody , Harish Patil , Sony Chacko , Ferruh Yigit To: dev@dpdk.org Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 9D7762BDD for ; Mon, 13 Jun 2016 12:47:37 +0200 (CEST) In-Reply-To: <575A91A6.9030605@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Ferruh Yigit --- drivers/net/bnx2x/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/bnx2x/Makefile b/drivers/net/bnx2x/Makefile index 6f1f385..c2ddd8d 100644 --- a/drivers/net/bnx2x/Makefile +++ b/drivers/net/bnx2x/Makefile @@ -14,6 +14,10 @@ EXPORT_MAP := rte_pmd_bnx2x_version.map LIBABIVER := 1 +ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y) +CFLAGS += -wd188 #188: enumerated type mixed with another type +endif + # # all source are stored in SRCS-y # -- 2.5.5