From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 9897F378E for ; Wed, 28 Sep 2016 17:59:04 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 28 Sep 2016 08:58:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,410,1470726000"; d="scan'208";a="1047027795" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.132]) ([10.237.220.132]) by fmsmga001.fm.intel.com with ESMTP; 28 Sep 2016 08:58:35 -0700 To: Pablo de Lara , dev@dpdk.org References: <1475022687-215148-1-git-send-email-pablo.de.lara.guarch@intel.com> Cc: declan.doherty@intel.com From: Ferruh Yigit Message-ID: <1eb6ff6f-f59c-e347-8f6f-8594fda6a59a@intel.com> Date: Wed, 28 Sep 2016 16:58:34 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1475022687-215148-1-git-send-email-pablo.de.lara.guarch@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] crypto: fix build with icc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2016 15:59:05 -0000 On 9/28/2016 1:31 AM, Pablo de Lara wrote: > This commit fixes a compilation error on icc, > due to unallowed conversion from int to enum: > > drivers/crypto/snow3g/rte_snow3g_pmd.c(155): > error #188: enumerated type mixed with another type > sess->op = mode; > ^ > drivers/crypto/kasumi/rte_kasumi_pmd.c(155): > error #188: enumerated type mixed with another type > sess->op = mode; > ^ > > Fixes: 3aafc423cf4d ("snow3g: add driver for SNOW 3G library") > Fixes: 2773c86d061a ("crypto/kasumi: add driver for KASUMI library") > > Signed-off-by: Pablo de Lara Acked-by: Ferruh Yigit