From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AE447A00C5; Mon, 14 Feb 2022 12:41:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ECE894274A; Mon, 14 Feb 2022 12:38:32 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id D10F741152 for ; Mon, 14 Feb 2022 12:38:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644838700; x=1676374700; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6lIxArtOeut3kztuAWYmtZS6EoqMYQFy6kUtFo3x0rQ=; b=Zig2kEmcU2Pt+e3BV0sExbzgdKD/Yx8YFcrHczZvLTk2x1DPnfHpuy6B LEPTinQqanlg/ee2mbxNJrPeL4oF1Si/zdOJRmFk11yhlgUeis9z7lvSb bY+nc0GKeXGm6p62nwPJf8NF7PwdBKMTkmwYQXuQSsX82H3phMkpY3SKy K8msGnmzi6tBbPRykaz9oQXmE+wshJGcRS4c6J6fbZGyKPLc5qHmtlImi LNo8g8k5hDwI+qQycdkMa1kUEQh2nIgeSQBBaWJA6a4wOccCjT5SbnsHU 57BclbFRvn9SNAiybYFD/YnkrQyR5DKgrv6F2ZLkXDfBiXsPgPZcKMhbF g==; X-IronPort-AV: E=McAfee;i="6200,9189,10257"; a="233620021" X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="233620021" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Feb 2022 03:38:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="632088254" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by fmsmga002.fm.intel.com with ESMTP; 14 Feb 2022 03:38:18 -0800 From: Sean Morrissey To: Akhil Goyal , Declan Doherty Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v7 49/50] cryptodev: remove unneeded header includes Date: Mon, 14 Feb 2022 11:36:31 +0000 Message-Id: <20220214113632.3184921-50-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220214113632.3184921-1-sean.morrissey@intel.com> References: <20220202094802.3618978-1-sean.morrissey@intel.com> <20220214113632.3184921-1-sean.morrissey@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/cryptodev/cryptodev_pmd.h | 4 ---- lib/cryptodev/rte_cryptodev.c | 11 ----------- lib/cryptodev/rte_cryptodev.h | 2 -- 3 files changed, 17 deletions(-) diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h index b9146f652c..8cf2da9b69 100644 --- a/lib/cryptodev/cryptodev_pmd.h +++ b/lib/cryptodev/cryptodev_pmd.h @@ -15,11 +15,7 @@ #include -#include -#include #include -#include -#include #include #include diff --git a/lib/cryptodev/rte_cryptodev.c b/lib/cryptodev/rte_cryptodev.c index a40536c5ea..8c1cccef0b 100644 --- a/lib/cryptodev/rte_cryptodev.c +++ b/lib/cryptodev/rte_cryptodev.c @@ -2,36 +2,25 @@ * Copyright(c) 2015-2020 Intel Corporation */ -#include #include #include #include #include #include -#include #include #include #include -#include #include #include #include -#include #include #include #include -#include -#include #include -#include -#include -#include -#include #include #include #include -#include #include #include #include diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h index 59ea5a54df..3493384fc7 100644 --- a/lib/cryptodev/rte_cryptodev.h +++ b/lib/cryptodev/rte_cryptodev.h @@ -20,9 +20,7 @@ extern "C" { #include "rte_kvargs.h" #include "rte_crypto.h" -#include "rte_dev.h" #include -#include #include #include "rte_cryptodev_trace_fp.h" -- 2.25.1