From a1f42a9dd7c6443853c92f4ca587d0c8e5ec5f94 Mon Sep 17 00:00:00 2001 From: Thierry Herbelot Date: Wed, 22 May 2019 11:44:49 +0200 Subject: [PATCH] drivers: fix typo in NXP comments Fix another copy'n'paste typo. Fixes: 531b17a780dc ("bus/fslmc: add QBMAN driver to bus") Fixes: 6ef6beca8844 ("crypto/caam_jr: add enqueue/dequeue operations") Fixes: c3e85bdcc6e6 ("crypto/dpaa_sec: add crypto driver for NXP DPAA platform") Cc: stable@dpdk.org Signed-off-by: Thierry Herbelot Acked-by: Akhil Goyal --- drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h | 2 +- drivers/crypto/caam_jr/caam_jr.c | 2 +- drivers/crypto/dpaa_sec/dpaa_sec.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h b/drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h index 07b8a4372f..c35dafedbc 100644 --- a/drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h +++ b/drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h @@ -15,7 +15,7 @@ * - Enqueue, including setting the enqueue descriptor, and issuing enqueue * command etc. * - Dequeue, including setting the dequeue descriptor, issuing dequeue command, - * parsing the dequeue response in DQRR and memeory, parsing the state change + * parsing the dequeue response in DQRR and memory, parsing the state change * notifications etc. * - Release, including setting the release descriptor, and issuing the buffer * release command. diff --git a/drivers/crypto/caam_jr/caam_jr.c b/drivers/crypto/caam_jr/caam_jr.c index 5028bd2a4c..77c0303476 100644 --- a/drivers/crypto/caam_jr/caam_jr.c +++ b/drivers/crypto/caam_jr/caam_jr.c @@ -70,7 +70,7 @@ static inline void caam_jr_op_ending(struct caam_jr_op_ctx *ctx) { PMD_INIT_FUNC_TRACE(); - /* report op status to sym->op and then free the ctx memeory */ + /* report op status to sym->op and then free the ctx memory */ rte_mempool_put(ctx->ctx_pool, (void *)ctx); } diff --git a/drivers/crypto/dpaa_sec/dpaa_sec.c b/drivers/crypto/dpaa_sec/dpaa_sec.c index d9a7cd8a42..122c80a072 100644 --- a/drivers/crypto/dpaa_sec/dpaa_sec.c +++ b/drivers/crypto/dpaa_sec/dpaa_sec.c @@ -61,7 +61,7 @@ dpaa_sec_op_ending(struct dpaa_sec_op_ctx *ctx) ctx->op->status = RTE_CRYPTO_OP_STATUS_ERROR; } - /* report op status to sym->op and then free the ctx memeory */ + /* report op status to sym->op and then free the ctx memory */ rte_mempool_put(ctx->ctx_pool, (void *)ctx); } -- 2.20.1