From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 88667DE3 for ; Wed, 21 Sep 2016 13:22:51 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP; 21 Sep 2016 04:22:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,373,1470726000"; d="scan'208";a="11757953" Received: from sie-lab-214-241.ir.intel.com (HELO silpixa00382162.ir.intel.com) ([10.237.214.241]) by orsmga005.jf.intel.com with ESMTP; 21 Sep 2016 04:22:49 -0700 From: Deepak Kumar Jain To: dev@dpdk.org Cc: sergio.gonzalez.monroy@intel.com, pablo.de.lara.guarch@intel.com, Deepak Kumar Jain Date: Wed, 21 Sep 2016 12:22:46 +0100 Message-Id: <1474456966-113365-1-git-send-email-deepak.k.jain@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dpdk-dev] [PATCH] crypto/qat: fix compile of qat on freebsd 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, 21 Sep 2016 11:22:52 -0000 Using sys/types.h instead of linux/types.h so as to compile QAT_PMD on freebsd. Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices") Signed-off-by: Deepak Kumar Jain --- drivers/crypto/qat/qat_adf/icp_qat_fw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/qat/qat_adf/icp_qat_fw.h b/drivers/crypto/qat/qat_adf/icp_qat_fw.h index 498ee83..5de34d5 100644 --- a/drivers/crypto/qat/qat_adf/icp_qat_fw.h +++ b/drivers/crypto/qat/qat_adf/icp_qat_fw.h @@ -46,7 +46,7 @@ */ #ifndef _ICP_QAT_FW_H_ #define _ICP_QAT_FW_H_ -#include +#include #include "icp_qat_hw.h" #define QAT_FIELD_SET(flags, val, bitpos, mask) \ -- 2.5.5