From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 15CA9A0545;
	Mon, 20 Jun 2022 12:41:58 +0200 (CEST)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id A4A0142B8E;
	Mon, 20 Jun 2022 12:40:58 +0200 (CEST)
Received: from mga02.intel.com (mga02.intel.com [134.134.136.20])
 by mails.dpdk.org (Postfix) with ESMTP id C9F7A42B7E
 for <dev@dpdk.org>; Mon, 20 Jun 2022 12:40:51 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1655721652; x=1687257652;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=LRBRnzyW/uxS2wiJxFBaC8eROGgybIuEOUIHg9DHAd8=;
 b=QH7RY85RGUksuPjGytqNMNSWdy/y2vEgBVF4/jl60MaI6Wuz2Ig3dnKD
 qpJjAojNHNwjHnpGYQ8Zhz334qHLZqR4O8aSL/dwnwSuKysYmKL1AbHlt
 2COQKApx7njqK65n0FcEhlwUwyL3VTahL8b4KAQ4PE7Exfd/s/CzirODp
 TqbS7omVDsFfaWqW0EqoPSk6W6B3JRkNn1erG9cWTp6AnoGltzA1O55k1
 wlMs29k4qKSGBopN3tK4SOADRULM7NseDaTxugxUmMcraQiZOMUeyn7WH
 /e93aTJrT+rZuJoR/gKbhUjdlzZkaZtvIhublNt+hvIIkOUaKgkdEU6DD g==;
X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581699"
X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581699"
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:51 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121133"
Received: from silpixa00401215.ir.intel.com ([10.55.128.100])
 by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:50 -0700
From: Sean Morrissey <sean.morrissey@intel.com>
To: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
Cc: dev@dpdk.org,
	Sean Morrissey <sean.morrissey@intel.com>
Subject: [PATCH v4 13/14] timer: remove unneeded header includes
Date: Mon, 20 Jun 2022 10:40:29 +0000
Message-Id: <20220620104030.1889156-14-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 <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

These header includes have been flagged by the iwyu_tool
and removed.

Signed-off-by: Sean Morrissey <sean.morrissey@intel.com>
---
 lib/timer/rte_timer.c | 1 -
 lib/timer/rte_timer.h | 2 --
 2 files changed, 3 deletions(-)

diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c
index c51a393e5c..9994813d0d 100644
--- a/lib/timer/rte_timer.c
+++ b/lib/timer/rte_timer.c
@@ -7,7 +7,6 @@
 #include <stdbool.h>
 #include <inttypes.h>
 #include <assert.h>
-#include <sys/queue.h>
 
 #include <rte_common.h>
 #include <rte_cycles.h>
diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h
index 0f820555c0..503438a36b 100644
--- a/lib/timer/rte_timer.h
+++ b/lib/timer/rte_timer.h
@@ -36,9 +36,7 @@
 
 #include <stdio.h>
 #include <stdint.h>
-#include <stddef.h>
 #include <rte_common.h>
-#include <rte_config.h>
 #include <rte_spinlock.h>
 
 #ifdef __cplusplus
-- 
2.25.1