From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id EAC965A44 for ; Fri, 14 Dec 2018 17:43:38 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Dec 2018 08:43:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,353,1539673200"; d="scan'208";a="109555666" Received: from ae13-28.jf.intel.com ([10.166.188.62]) by fmsmga008.fm.intel.com with ESMTP; 14 Dec 2018 08:43:37 -0800 From: Jeff Shaw To: dev@dpdk.org Cc: jeffrey.b.shaw@intel.com Date: Fri, 14 Dec 2018 08:40:00 -0800 Message-Id: <20181214164000.9667-1-jeffrey.b.shaw@intel.com> X-Mailer: git-send-email 2.14.3 Subject: [dpdk-dev] [PATCH] eal: remove unnecessary dirent.h include X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2018 16:43:39 -0000 Prior to this patch, the two affected .c files include unnecessarily. This commit removes the include lines. Signed-off-by: Jeff Shaw --- lib/librte_eal/common/eal_common_lcore.c | 1 - lib/librte_eal/common/rte_service.c | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/librte_eal/common/eal_common_lcore.c b/lib/librte_eal/common/eal_common_lcore.c index 3167e9d79..1cbac4228 100644 --- a/lib/librte_eal/common/eal_common_lcore.c +++ b/lib/librte_eal/common/eal_common_lcore.c @@ -5,7 +5,6 @@ #include #include #include -#include #include #include diff --git a/lib/librte_eal/common/rte_service.c b/lib/librte_eal/common/rte_service.c index 0f3695c4b..03fde97a9 100644 --- a/lib/librte_eal/common/rte_service.c +++ b/lib/librte_eal/common/rte_service.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include -- 2.14.3