From 62ae8dbc760162171d1116ee8372338c4ea3678d Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Tue, 11 Oct 2016 02:15:05 +0100 Subject: [PATCH] crypto/libcrypto: fix init function names All init/uninit function names in the virtual devices have been renamed, so they finish with probe or remove, so to keep consistency, same thing should be done in this PMD. Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") Signed-off-by: Pablo de Lara Acked-by: Fiona Trahe --- drivers/crypto/libcrypto/rte_libcrypto_pmd.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/crypto/libcrypto/rte_libcrypto_pmd.c b/drivers/crypto/libcrypto/rte_libcrypto_pmd.c index e991c57991..30fcecbc25 100644 --- a/drivers/crypto/libcrypto/rte_libcrypto_pmd.c +++ b/drivers/crypto/libcrypto/rte_libcrypto_pmd.c @@ -42,7 +42,7 @@ #include "rte_libcrypto_pmd_private.h" -static int cryptodev_libcrypto_uninit(const char *name); +static int cryptodev_libcrypto_remove(const char *name); /*----------------------------------------------------------------------------*/ @@ -1008,13 +1008,13 @@ cryptodev_libcrypto_create(const char *name, init_error: LIBCRYPTO_LOG_ERR("driver %s: cryptodev_libcrypto_create failed", name); - cryptodev_libcrypto_uninit(crypto_dev_name); + cryptodev_libcrypto_remove(crypto_dev_name); return -EFAULT; } /** Initialise LIBCRYPTO crypto device */ static int -cryptodev_libcrypto_init(const char *name, +cryptodev_libcrypto_probe(const char *name, const char *input_args) { struct rte_crypto_vdev_init_params init_params = { @@ -1037,7 +1037,7 @@ cryptodev_libcrypto_init(const char *name, /** Uninitialise LIBCRYPTO crypto device */ static int -cryptodev_libcrypto_uninit(const char *name) +cryptodev_libcrypto_remove(const char *name) { if (name == NULL) return -EINVAL; @@ -1050,8 +1050,8 @@ cryptodev_libcrypto_uninit(const char *name) } static struct rte_vdev_driver cryptodev_libcrypto_pmd_drv = { - .probe = cryptodev_libcrypto_init, - .remove = cryptodev_libcrypto_uninit + .probe = cryptodev_libcrypto_probe, + .remove = cryptodev_libcrypto_remove }; RTE_PMD_REGISTER_VDEV(CRYPTODEV_NAME_LIBCRYPTO_PMD, -- 2.20.1