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 286B2A0545; Mon, 20 Jun 2022 12:41:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8CF4C42B7C; Mon, 20 Jun 2022 12:40:56 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 7188242B77 for ; Mon, 20 Jun 2022 12:40:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721649; x=1687257649; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uTHFrinGk+aE8JOl8K8zfq5itDMNfQ04qzq94MLQdn8=; b=oHxdpOfSIDx+T1EaAwD0pCUWZlXpVGpfb2YQtaBNDiqUYKkjpMo/aDH4 jSfk0SK9JluKpIrqfOKKiZgEp5SkhbPvlIV3s5yNwBBJIG3drVGrrG3B/ f5ozmxCnpO14jtY+itqz4jevNiYjd80Xnnvp1+0pkQVflpqXrZFGa4CHW 4xJY+DqBeO1oUbnQJBz5ZF3hJFkUcmJqMb/QAgeTvgVq+MgY8lL9txgpf p7XGg2EJBUhHro3u6UO7FyQefWb6KNQWSjF8ZYFlprDWnT0b7KNB2cTAe 64x8lNCgVHHpDvNIcH2grvGi0LVEV+S4lWZQrXqHc7IyVmqpp/B1pck39 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581692" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581692" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jun 2022 03:40:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121125" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:48 -0700 From: Sean Morrissey To: Sachin Saxena , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 11/14] rawdev: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:27 +0000 Message-Id: <20220620104030.1889156-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220620104030.1889156-1-sean.morrissey@intel.com> References: <20220617190835.1126602-1-sean.morrissey@intel.com> <20220620104030.1889156-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