From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 3B0CC5598 for ; Tue, 11 Oct 2016 03:13:31 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP; 10 Oct 2016 18:13:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,327,1473145200"; d="scan'208";a="18223369" Received: from sie-lab-214-036.ir.intel.com (HELO silpixa00394365.ir.intel.com) ([10.237.214.36]) by fmsmga006.fm.intel.com with ESMTP; 10 Oct 2016 18:13:29 -0700 From: Pablo de Lara To: dev@dpdk.org Cc: Pablo de Lara Date: Tue, 11 Oct 2016 02:14:52 +0100 Message-Id: <1476148492-114899-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] crypto/zuc: fix init function names X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2016 01:13:31 -0000 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 --- 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