From patchwork Tue Sep 7 19:00:17 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akhil Goyal X-Patchwork-Id: 98220 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20A93A0C47; Tue, 7 Sep 2021 21:00:46 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 762A941125; Tue, 7 Sep 2021 21:00:44 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id A0CE941121 for ; Tue, 7 Sep 2021 21:00:43 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 187HZVfL016063; Tue, 7 Sep 2021 12:00:35 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=jvPUV+ZW1MDjJBnE0m0uA7bnbw7MQu8CFlHMB/PKng8=; b=OV4RFeoeXyhwobpVGAmOquExQFnmN10FLaNSowp5ZcUgV5ucWjPRPqaKlLeQlg7QDk2H 1+ygjmp1aUb7J8dVYhAi3Hezn7OF+iihSL1aCETXHjc8S7YEBJXciOQ4Kaz1r7oNx7G1 8st5uLj50WKEa1Lx9nCrJGDxXTrEmEMscCjjk+InjK1Cvm4/pjGFmEtbxqHmju39fKIo zHCcequMphNf4JibtcFDSaGpEvbRvl7MagANDT+T4cLYTLjVhQPOHq267DLYPN+gVRtd dgg2fM/mierOmwwwjxs5Uc7uTI/h2/3yLx9g+Y5SUtW3wPEW3ivjqHZxmqGj6KFJ0EJN Mw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com with ESMTP id 3axcm7r9tn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 07 Sep 2021 12:00:35 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Tue, 7 Sep 2021 12:00:33 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Tue, 7 Sep 2021 12:00:34 -0700 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id 0C45D3F7095; Tue, 7 Sep 2021 12:00:28 -0700 (PDT) From: Akhil Goyal To: CC: , , , , , , , , , , , , , , , , , Akhil Goyal Date: Wed, 8 Sep 2021 00:30:17 +0530 Message-ID: <20210907190020.2968234-2-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210907190020.2968234-1-gakhil@marvell.com> References: <20210810195020.1423013-1-gakhil@marvell.com> <20210907190020.2968234-1-gakhil@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: X-23iGtux9kZVPX56khEDmRByy2S3fj0 X-Proofpoint-ORIG-GUID: X-23iGtux9kZVPX56khEDmRByy2S3fj0 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-09-07_07,2021-09-07_02,2020-04-07_01 Subject: [dpdk-dev] [PATCH v3 1/4] test/crypto: remove illegal header include 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 Sender: "dev" rte_cryptodev_pmd.h is an interface between driver and library and it is mentioned in the file that application cannot use it directly. Hence, removing the include. Signed-off-by: Akhil Goyal Acked-by: Matan Azrad --- app/test/test_cryptodev.c | 1 - app/test/test_cryptodev_asym.c | 1 - app/test/test_cryptodev_blockcipher.c | 1 - app/test/test_cryptodev_security_pdcp.c | 1 - app/test/test_ipsec.c | 1 - 5 files changed, 5 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 843d07ba37..9e823db1e6 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -16,7 +16,6 @@ #include #include -#include #include #ifdef RTE_CRYPTO_SCHEDULER diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c index 847b074a4f..9d19a6d6d9 100644 --- a/app/test/test_cryptodev_asym.c +++ b/app/test/test_cryptodev_asym.c @@ -12,7 +12,6 @@ #include #include -#include #include #include "test_cryptodev.h" diff --git a/app/test/test_cryptodev_blockcipher.c b/app/test/test_cryptodev_blockcipher.c index 53fd4718af..1c948eb008 100644 --- a/app/test/test_cryptodev_blockcipher.c +++ b/app/test/test_cryptodev_blockcipher.c @@ -11,7 +11,6 @@ #include #include -#include #include "test.h" #include "test_cryptodev.h" diff --git a/app/test/test_cryptodev_security_pdcp.c b/app/test/test_cryptodev_security_pdcp.c index 30f3eb892c..a7641bab7a 100644 --- a/app/test/test_cryptodev_security_pdcp.c +++ b/app/test/test_cryptodev_security_pdcp.c @@ -17,7 +17,6 @@ #include #include -#include #include #include diff --git a/app/test/test_ipsec.c b/app/test/test_ipsec.c index fb90130ae2..c6d6b88d6d 100644 --- a/app/test/test_ipsec.c +++ b/app/test/test_ipsec.c @@ -15,7 +15,6 @@ #include #include -#include #include #include #include