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 013D0A00C5; Tue, 15 Feb 2022 13:34:11 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A55F9426D9; Tue, 15 Feb 2022 13:32:40 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id B41B5411B5 for ; Tue, 15 Feb 2022 13:32:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928345; x=1676464345; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9KD3LslvJo14v5IJYpzBfExtaGJwSQ3EdurS8wbJTfg=; b=nHduwUzBkxaZcC7p3B4OtorRPDZ6a9Fo+Zu/E6AYVAEqA2/1zcDLMaIK vk6m1PlfFLt/yvr6WY8iroC75mhyYEMwONxpzGYNNnlNFDyv+i1KzwpsF IxAVD9960LuCivqMqxXxJGToLJ/49KFzkHLTD5nhOCSl0kaBNKRaw3ZNo 09YA2cFQcsV5r3x0zbhvVg2j/EkMuS1+KdbFyn6/L/AtdShl5UEKFk0Bj rVr8T9cRdWVsIRkO5CgoryUHNJGaKgy2Tfd4CC55A+X8ytvdEQqqAqEKK ZZNfxfaawUUozhmAh9F+dFYWSPjKjH5gmrmKC6mPyEz2rzoIfaFhlMfju g==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936606" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936606" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 04:32:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280381" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:32:24 -0800 From: Sean Morrissey To: Gaetan Rivet Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 21/50] pci: remove unneeded header includes Date: Tue, 15 Feb 2022 12:30:08 +0000 Message-Id: <20220215123037.608981-22-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220215123037.608981-1-sean.morrissey@intel.com> References: <20220214144406.4192233-1-sean.morrissey@intel.com> <20220215123037.608981-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/pci/rte_pci.c | 15 +-------------- lib/pci/rte_pci.h | 1 - 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/lib/pci/rte_pci.c b/lib/pci/rte_pci.c index c91be8b167..355772ff56 100644 --- a/lib/pci/rte_pci.c +++ b/lib/pci/rte_pci.c @@ -3,23 +3,10 @@ * Copyright 2013-2014 6WIND S.A. */ -#include -#include #include #include #include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include + #include #include "rte_pci.h" diff --git a/lib/pci/rte_pci.h b/lib/pci/rte_pci.h index 71cbd441c7..5088157e74 100644 --- a/lib/pci/rte_pci.h +++ b/lib/pci/rte_pci.h @@ -17,7 +17,6 @@ extern "C" { #endif #include -#include #include #include -- 2.25.1