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 F369BA034E; Mon, 14 Feb 2022 15:46:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 06BF2411FB; Mon, 14 Feb 2022 15:45:59 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 5DF754117D for ; Mon, 14 Feb 2022 15:45:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644849951; x=1676385951; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sV8rOLEgig89Nm8CcQIJ5ufBJ0k+JGoR9uMkvfWEpgk=; b=AeJj60ay/dZBlm3WSWnU76Y7NZXWL80oxFv6b2Ng8sxneZBxBXv0GaLt lbCfjQfmhDPGrCYp8GmfhHyGZum81eVl2NaYuWi/TWWnmKXkggc/wRKoz 14f+qchdm+TkyAR3vA3keFrlIQ46KZfBFBba1x5tCeKpl3q9lv05oGhGu HQZTkXLRDEogRHVDXdcuQPgz9XpalF9AnOYykUc8dTAd8k1tMAaaryW9s 1ZEuSlb1uGHH+nmLsa1BQYSJQmPAF0Nu6Loxq66H1pK4swZ1iPAyZUBPX V3ZrWWkSBwErPMb6BZAzlohT1w2oVBaffOIcCzvkGIofuw8Q4mU3kGrAb A==; X-IronPort-AV: E=McAfee;i="6200,9189,10257"; a="274673424" X-IronPort-AV: E=Sophos;i="5.88,368,1635231600"; d="scan'208";a="274673424" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Feb 2022 06:45:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,368,1635231600"; d="scan'208";a="485505079" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga003.jf.intel.com with ESMTP; 14 Feb 2022 06:45:41 -0800 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v8 14/50] regexdev: remove unneeded header includes Date: Mon, 14 Feb 2022 14:43:30 +0000 Message-Id: <20220214144406.4192233-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220214144406.4192233-1-sean.morrissey@intel.com> References: <20220214113632.3184921-1-sean.morrissey@intel.com> <20220214144406.4192233-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