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 94DE6A00C5; Mon, 14 Feb 2022 12:40:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DF8E142737; Mon, 14 Feb 2022 12:38:28 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id E72A94272D for ; Mon, 14 Feb 2022 12:38:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644838694; x=1676374694; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=MB18BzpcoV6r0lJm+UvYVyzlNk4Jg6WXBTdpHBuhJqs=; b=aALhPuSNdtBJNMJhq6DG/OcN7DSdslh/dUOosurXh5WcnNTi6Gas5BsG oY3VE4PiEpG/rxxx4dD10BxZKna3S2zeCf7GS82CyP85qIOkkjyHriYo3 U1ZXG5H26rdLsnOk0uR+rfgRH7McieTPqBiq974hLZBnaH82/3McOD9tB hmlTgqdNUnpoyiNlxPEgHRfdzWTXIa9E+D1j+62KGsmN5OAhGOv5uByEC ZKu6MsML9DGARRrA3weG6qbrPfaiDRZtqB7MYLnr25bH2abtZcuUEEANO 60A8I+7QcabMQZIWNdCMy8N+ID9PULVCcJZZUFl39wr0LzdlCxsOS2UGz g==; X-IronPort-AV: E=McAfee;i="6200,9189,10257"; a="233620011" X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="233620011" 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:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="632088062" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by fmsmga002.fm.intel.com with ESMTP; 14 Feb 2022 03:38:12 -0800 From: Sean Morrissey To: Fan Zhang , Ashish Gupta Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v7 45/50] compressdev: remove unneeded header includes Date: Mon, 14 Feb 2022 11:36:27 +0000 Message-Id: <20220214113632.3184921-46-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/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 2e9218af68..202ee694d8 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