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 D6931A00C5; Tue, 15 Feb 2022 13:32:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 51F554116D; Tue, 15 Feb 2022 13:32:14 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 51B2041151 for ; Tue, 15 Feb 2022 13:32:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928332; x=1676464332; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=UEM03x0L/vRbT1ZPutoP0GLcryzTd4JGyEEIbeuD1eo=; b=Dx5sPsUzSlkP4lDd7Gf9n864sqaiojlb46YeWMr0aWMy/g7t/VqMFFNg 7Vd7DFxaPlH2WJs9c2oq87JYF5LLTipt+fO6Ad99oDEiVieXdpy4/8rJE nEFw8AJavbTHVbuiCkj+na3ppvC6bWo+G9G8zabfHcY48al81ojsFeAcm phDZzyr3hkvWD4ZLxlKP2RZohtr00xZS3K9wgDm0ipU2wFqvcaVefa3ar Wx8zNPp1B0nkeyXZlL6App4ddAKeNmaDjLTb0BYTWlTHhDScyk5OfXakY CyJ8T8cSh43OuvmzCQq1qydTHj40D3n7IQopmnTgsXgbIos6GUkhudSqo A==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936547" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936547" 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:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280290" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:32:04 -0800 From: Sean Morrissey To: Robert Sanford , Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 07/50] timer: remove unneeded header includes Date: Tue, 15 Feb 2022 12:29:54 +0000 Message-Id: <20220215123037.608981-8-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 Acked-by: Erik Gabriel Carrillo --- lib/timer/rte_timer.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index 6d19ce469b..c51a393e5c 100644 --- a/lib/timer/rte_timer.c +++ b/lib/timer/rte_timer.c @@ -2,7 +2,6 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include #include @@ -13,18 +12,13 @@ #include #include #include -#include #include -#include -#include #include #include #include #include #include #include -#include -#include #include "rte_timer.h" -- 2.25.1