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 EC1BCA034E; Mon, 14 Feb 2022 15:50:29 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B1C0E42760; Mon, 14 Feb 2022 15:46:37 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 3070F41169 for ; Mon, 14 Feb 2022 15:46:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644849990; x=1676385990; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=VX98Q2YiayKVSoU5dopmtxznvUeInw0P5APfZpsP7ds=; b=CBO/ZX3qYlVrepSZKofTKs0lE8+KZbMBOnxUrXLBaOTBIHQ7C4Qvh2d+ 1puleeFmQZLFyH6DQJmZFi5SBmyByd5ct6fHwil/72KOKioKcRUG6/TAT zgEDRin+rYvO28R0c0zrX2woIjngkn0f1psFXvHVEG+yw45faoFUrTL82 hkYD81g4YyMv98UPbdhut2509Mkax4t3gzTSIefBbMYPUeDbdSvWDvEq9 2F/GpptszUOERiyDstvsEVfVnTUjYV7f95ajHw9DavnOJMBNfYEaDQFCK k0rF22qsWeNeQBKpBPgPoeIRTa8u4ta1LxWZh1lmobn5ZAQmbf7mOfFxm Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10257"; a="274673570" X-IronPort-AV: E=Sophos;i="5.88,368,1635231600"; d="scan'208";a="274673570" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Feb 2022 06:46:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,368,1635231600"; d="scan'208";a="485505448" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga003.jf.intel.com with ESMTP; 14 Feb 2022 06:46:28 -0800 From: Sean Morrissey To: Fan Zhang , Ashish Gupta Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v8 45/50] compressdev: remove unneeded header includes Date: Mon, 14 Feb 2022 14:44:01 +0000 Message-Id: <20220214144406.4192233-46-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220214144406.4192233-1-sean.morrissey@intel.com> References: <20220214113632.3184921-1-sean.morrissey@intel.com> <20220214144406.4192233-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/compressdev/rte_comp.c | 1 - lib/compressdev/rte_comp.h | 1 - lib/compressdev/rte_compressdev.c | 1 - lib/compressdev/rte_compressdev.h | 1 - lib/compressdev/rte_compressdev_pmd.h | 2 -- 5 files changed, 6 deletions(-) diff --git a/lib/compressdev/rte_comp.c b/lib/compressdev/rte_comp.c index 3b0e46f96e..320c6dab92 100644 --- a/lib/compressdev/rte_comp.c +++ b/lib/compressdev/rte_comp.c @@ -3,7 +3,6 @@ */ #include "rte_comp.h" -#include "rte_compressdev.h" #include "rte_compressdev_internal.h" const char * diff --git a/lib/compressdev/rte_comp.h b/lib/compressdev/rte_comp.h index 95306c5d03..cdb55e5887 100644 --- a/lib/compressdev/rte_comp.h +++ b/lib/compressdev/rte_comp.h @@ -16,7 +16,6 @@ extern "C" { #endif -#include #include /** diff --git a/lib/compressdev/rte_compressdev.c b/lib/compressdev/rte_compressdev.c index d4f7d4d3da..22c438f2dd 100644 --- a/lib/compressdev/rte_compressdev.c +++ b/lib/compressdev/rte_compressdev.c @@ -3,7 +3,6 @@ */ #include -#include #include #include diff --git a/lib/compressdev/rte_compressdev.h b/lib/compressdev/rte_compressdev.h index 2840c27c6c..aa865c4c03 100644 --- a/lib/compressdev/rte_compressdev.h +++ b/lib/compressdev/rte_compressdev.h @@ -21,7 +21,6 @@ extern "C" { #endif -#include #include "rte_comp.h" diff --git a/lib/compressdev/rte_compressdev_pmd.h b/lib/compressdev/rte_compressdev_pmd.h index f9a42d1f05..9fabc399c5 100644 --- a/lib/compressdev/rte_compressdev_pmd.h +++ b/lib/compressdev/rte_compressdev_pmd.h @@ -19,8 +19,6 @@ extern "C" { #include -#include -#include #include "rte_compressdev.h" #include "rte_compressdev_internal.h" -- 2.25.1