From patchwork Fri Jan 14 16:23:37 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105836 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D8E66A00C3; Fri, 14 Jan 2022 17:29:00 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0A819427EB; Fri, 14 Jan 2022 17:27:25 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 81054427DE for ; Fri, 14 Jan 2022 17:27:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177643; x=1673713643; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mhp7Qf5sbPH71MG3+BwyuYtvhLatxsuGRv0MpH1/PEo=; b=mB8wXHSm8edHc6QWaiwK5Dc5FeIGDF/AX2CePR6nCdzBETvwnUvtm/5s pRy2WN9wnh96rRjch3pPftSVviDXCXqqir4M66kxtEe8BWMv1hT54/XHE jXmlmoaLnhoGYwOXxRAqbXFR3tT7Kk8oURGU9xVRBxsZcwz0WW3eolsDm gG9WgZDa1kRQ5O9j6uDgysQhGaGgQ+byilotc7siFDm9eO71KCWK4OibA 51xwkGNj1+Tjkz+DokC7O+H8X4wIb7fQutqsEtYK4L5W3uMmcBXx78IVm SxjmGe2ZR103Ui1IzJmFZv+HBGH8Or7E9hwKKFjL7i5uDb9FLsTqCyp+x g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642704" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642704" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523545" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:21 -0800 From: Sean Morrissey To: Reshma Pattan , Stephen Hemminger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 21/53] pdump: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:37 +0000 Message-Id: <20220114162409.334437-22-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-1-sean.morrissey@intel.com> MIME-Version: 1.0 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/pdump/rte_pdump.c | 1 - lib/pdump/rte_pdump.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/pdump/rte_pdump.c b/lib/pdump/rte_pdump.c index af450695ec..b3a62df591 100644 --- a/lib/pdump/rte_pdump.c +++ b/lib/pdump/rte_pdump.c @@ -2,7 +2,6 @@ * Copyright(c) 2016-2018 Intel Corporation */ -#include #include #include #include diff --git a/lib/pdump/rte_pdump.h b/lib/pdump/rte_pdump.h index 6efa0274f2..41c4b7800b 100644 --- a/lib/pdump/rte_pdump.h +++ b/lib/pdump/rte_pdump.h @@ -13,8 +13,6 @@ */ #include -#include -#include #include #ifdef __cplusplus