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 B822FA0032; Fri, 17 Jun 2022 21:09:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4D42542B8A; Fri, 17 Jun 2022 21:09:08 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id D66E642847 for ; Fri, 17 Jun 2022 21:09:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492943; x=1687028943; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uTHFrinGk+aE8JOl8K8zfq5itDMNfQ04qzq94MLQdn8=; b=O+BKpQcTZbbtZEgHTiGp040B01kySFWtLIuJiHI8ShjyqgQ+ag9xEWk1 WPhsqcdw/lKogMcfCdwMJPNFhvWiq9uNBDlWZQG8uLMDbWSukHTXPSMrU Pp5zPGuu6+xR+x7eVfG9bVcKqeWKQyFg5vjr8sNQP335dGnhVMVNXriJt M4dSyw9ZjBdh2/MTSpUEhKAyUDvw2pemfJNYuzSzYLFi4ns/O6VKYWVLI 0SXYBqLRtmKiewOcr1u0l6pCRcx5m/dlqh04aZH35I0lZFxILHqj9rZow Ix3PQUtXTxhieRb4yMGolE9MClzkJKU5usDbJ4OFciMtuDrQu9nmXw+OT g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389458" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389458" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737024" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:01 -0700 From: Sean Morrissey To: Sachin Saxena , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 12/18] rawdev: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:29 +0000 Message-Id: <20220617190835.1126602-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Acked-by: Hemant Agrawal --- lib/rawdev/rte_rawdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/rawdev/rte_rawdev.h b/lib/rawdev/rte_rawdev.h index 14e8eb972f..66080eae9e 100644 --- a/lib/rawdev/rte_rawdev.h +++ b/lib/rawdev/rte_rawdev.h @@ -20,7 +20,6 @@ extern "C" { #include #include -#include /* Rawdevice object - essentially a void to be typecast by implementation */ typedef void *rte_rawdev_obj_t; -- 2.25.1