[dpdk-dev] [PATCH 1/4] test/crypto: remove illegal header include
From: Akhil Goyal <hidden>
Date: 2021-08-05 20:03:13
Subsystem:
the rest · Maintainer:
Linus Torvalds
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 <redacted> --- 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 <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_string_fns.h> #ifdef RTE_CRYPTO_SCHEDULER
diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
index afa0e91a45..603b2e4609 100644
--- a/app/test/test_cryptodev_asym.c
+++ b/app/test/test_cryptodev_asym.c@@ -12,7 +12,6 @@ #include <rte_pause.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_crypto.h> #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 <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #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 <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_security.h> #include <rte_lcore.h>
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 <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_lcore.h> #include <rte_ipsec.h> #include <rte_random.h>
--
2.25.1