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 8DE59A00C5; Tue, 15 Feb 2022 13:33:26 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0009C411EB; Tue, 15 Feb 2022 13:32:25 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id BD3F341176 for ; Tue, 15 Feb 2022 13:32:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928336; x=1676464336; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sV8rOLEgig89Nm8CcQIJ5ufBJ0k+JGoR9uMkvfWEpgk=; b=IEuoll8fTDP5PCZ0t0Nh3A8Cggxokvn4JAwYq3vlbenqwqYdSRHXPXGa 1AaQeNvSII1T2b7k74AmCGFIkzyrSVORcfBQ7hK9544L0IW7W/2El2OHU QolnjpphC9qJEJMhAog9LBBOeA9buYOOcy5CCxMtN5JFJrFccjhiK/q5p XamUYm9yAKSSfSJ5Z7u/2MDDLkJLP5/y5vO6/lAkey5veu+HYp6aAnt1H KC7XY6gYaNfkigDDDIN87iTZlJFdQSkFohnX4EbzzO39uQyVeie+6n3o0 cbl+QPB5qFdr2Ajf0+s/032gq3wuVqSzYskj1A9FwG8Rk2rbM+/K9uGgd g==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936574" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936574" 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:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280335" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:32:14 -0800 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 14/50] regexdev: remove unneeded header includes Date: Tue, 15 Feb 2022 12:30:01 +0000 Message-Id: <20220215123037.608981-15-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: Ori Kam --- lib/regexdev/rte_regexdev.c | 2 -- lib/regexdev/rte_regexdev.h | 3 --- 2 files changed, 5 deletions(-) diff --git a/lib/regexdev/rte_regexdev.c b/lib/regexdev/rte_regexdev.c index 04ab713730..02a388bc5d 100644 --- a/lib/regexdev/rte_regexdev.c +++ b/lib/regexdev/rte_regexdev.c @@ -5,8 +5,6 @@ #include -#include -#include #include #include diff --git a/lib/regexdev/rte_regexdev.h b/lib/regexdev/rte_regexdev.h index 0bac46cda9..4ba67b0c25 100644 --- a/lib/regexdev/rte_regexdev.h +++ b/lib/regexdev/rte_regexdev.h @@ -199,11 +199,8 @@ extern "C" { #endif #include -#include #include -#include #include -#include #define RTE_REGEXDEV_NAME_MAX_LEN RTE_DEV_NAME_MAX_LEN -- 2.25.1