From patchwork Tue Aug 10 19:50: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: 96787 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 37E67A0C43; Tue, 10 Aug 2021 21:50:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1F202411CA; Tue, 10 Aug 2021 21:50:54 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 1BC00411C7 for ; Tue, 10 Aug 2021 21:50:52 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 17AJoiit001240; Tue, 10 Aug 2021 12:50:44 -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=HbUcARiREd5uMEbuDTHIXMA+IZghMMzDi+GfVAnJrGM=; b=iRmWEoXsSWbfE8a5JfJDAwM5eOSxD65pS4ut0FpLrLb1DSsaPANocAA7P6c92c717AXZ vxY5n2ERpQPQdQJGZWEF9o5c4sQa/NDXj+qoC4g0uBjSTNFWzdf5ZgQuuZVBs4jc+DNT 0gk1JXRWTGffPFDQx8JfiqHsQhTm8FWRo+7zwyL6i8lpznewCpCoZ2Nr65clbR3phuoh Nh0uXQAgwbOcopb65tyzuubkOae/fe7jc4I+iG+Dshes7dnEDfiLchnlsUiovwm76Wp4 0NfotWo1lsjVEpgalRKRb8+hNCDMLU/yVN/+4eg4S6xFdA2urtxBP12TjSBANlAW6bH3 xA== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 3abrft22wn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 10 Aug 2021 12:50:44 -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, 10 Aug 2021 12:50:41 -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, 10 Aug 2021 12:50:41 -0700 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id 7A9A85E6884; Tue, 10 Aug 2021 12:50:36 -0700 (PDT) From: Akhil Goyal To: CC: , , , , , , , , , , , , , , , , , Akhil Goyal Date: Wed, 11 Aug 2021 01:20:17 +0530 Message-ID: <20210810195020.1423013-2-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210810195020.1423013-1-gakhil@marvell.com> References: <20210805200236.1180289-1-gakhil@marvell.com> <20210810195020.1423013-1-gakhil@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: D4mBE0j7tZLAEpdbJBkPt6yuToJhefNK X-Proofpoint-GUID: D4mBE0j7tZLAEpdbJBkPt6yuToJhefNK X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-08-10_08:2021-08-10, 2021-08-10 signatures=0 Subject: [dpdk-dev] [PATCH v2 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 9ad0b37473..e8d63b2bc3 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