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: cf7685d68f00 ("crypto/zuc: add driver for ZUC library") Signed-off-by: Pablo de Lara <pablo.de.lara.guarch at intel.com> --- drivers/crypto/zuc/rte_zuc_pmd.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/crypto/zuc/rte_zuc_pmd.c b/drivers/crypto/zuc/rte_zuc_pmd.c index 457f3ca..403dca9 100644 --- a/drivers/crypto/zuc/rte_zuc_pmd.c +++ b/drivers/crypto/zuc/rte_zuc_pmd.c @@ -445,7 +445,7 @@ zuc_pmd_dequeue_burst(void *queue_pair, return nb_dequeued; } -static int cryptodev_zuc_uninit(const char *name); +static int cryptodev_zuc_remove(const char *name); static int cryptodev_zuc_create(const char *name, @@ -499,12 +499,12 @@ cryptodev_zuc_create(const char *name, init_error: ZUC_LOG_ERR("driver %s: cryptodev_zuc_create failed", name); - cryptodev_zuc_uninit(crypto_dev_name); + cryptodev_zuc_remove(crypto_dev_name); return -EFAULT; } static int -cryptodev_zuc_init(const char *name, +cryptodev_zuc_probe(const char *name, const char *input_args) { struct rte_crypto_vdev_init_params init_params = { @@ -526,7 +526,7 @@ cryptodev_zuc_init(const char *name, } static int -cryptodev_zuc_uninit(const char *name) +cryptodev_zuc_remove(const char *name) { if (name == NULL) return -EINVAL; @@ -539,8 +539,8 @@ cryptodev_zuc_uninit(const char *name) } static struct rte_vdev_driver cryptodev_zuc_pmd_drv = { - .probe = cryptodev_zuc_init, - .remove = cryptodev_zuc_uninit + .probe = cryptodev_zuc_probe, + .remove = cryptodev_zuc_remove }; DRIVER_REGISTER_VDEV(CRYPTODEV_NAME_ZUC_PMD, cryptodev_zuc_pmd_drv); -- 2.7.4