* [dpdk-dev] [PATCH] common/cnxk: fix a few typos
@ 2021-11-02 18:47 Tomasz Duszynski
2021-11-03 15:12 ` Jerin Jacob
0 siblings, 1 reply; 2+ messages in thread
From: Tomasz Duszynski @ 2021-11-02 18:47 UTC (permalink / raw)
To: dev
Cc: jerinj, Tomasz Duszynski, Nithin Dabilpuram, Kiran Kumar K,
Sunil Kumar Kori, Satha Rao
Fix typos here and there.
Signed-off-by: Tomasz Duszynski <tduszynski@marvell.com>
Reviewed-by: Jerin Jacob Kollanukkaran <jerinj@marvell.com>
---
drivers/common/cnxk/roc_api.h | 2 +-
drivers/common/cnxk/roc_nix_irq.c | 2 +-
drivers/common/cnxk/roc_se.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/common/cnxk/roc_api.h b/drivers/common/cnxk/roc_api.h
index b8f3667c6c..63c7df7b6c 100644
--- a/drivers/common/cnxk/roc_api.h
+++ b/drivers/common/cnxk/roc_api.h
@@ -12,7 +12,7 @@
/* Bits manipulation */
#include "roc_bits.h"
-/* Bitfields manipulation */
+/* Bit fields manipulation */
#include "roc_bitfield.h"
/* ROC Constants */
diff --git a/drivers/common/cnxk/roc_nix_irq.c b/drivers/common/cnxk/roc_nix_irq.c
index e9aa620abd..a5cd9d4b02 100644
--- a/drivers/common/cnxk/roc_nix_irq.c
+++ b/drivers/common/cnxk/roc_nix_irq.c
@@ -421,7 +421,7 @@ roc_nix_register_cq_irqs(struct roc_nix *roc_nix)
rc);
return rc;
}
- /* VFIO vector zero is resereved for misc interrupt so
+ /* VFIO vector zero is reserved for misc interrupt so
* doing required adjustment. (b13bfab4cd)
*/
if (plt_intr_vec_list_index_set(handle, q,
diff --git a/drivers/common/cnxk/roc_se.c b/drivers/common/cnxk/roc_se.c
index 4edbc8e547..6a28609b7c 100644
--- a/drivers/common/cnxk/roc_se.c
+++ b/drivers/common/cnxk/roc_se.c
@@ -357,7 +357,7 @@ roc_se_ciph_key_set(struct roc_se_ctx *se_ctx, roc_se_cipher_type type,
if (se_ctx->fc_type == ROC_SE_FC_GEN) {
/*
* We need to always say IV is from DPTR as user can
- * sometimes iverride IV per operation.
+ * sometimes override IV per operation.
*/
fctx->enc.iv_source = ROC_SE_FROM_DPTR;
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] common/cnxk: fix a few typos
2021-11-02 18:47 [dpdk-dev] [PATCH] common/cnxk: fix a few typos Tomasz Duszynski
@ 2021-11-03 15:12 ` Jerin Jacob
0 siblings, 0 replies; 2+ messages in thread
From: Jerin Jacob @ 2021-11-03 15:12 UTC (permalink / raw)
To: Tomasz Duszynski, Ferruh Yigit
Cc: dpdk-dev, Jerin Jacob, Nithin Dabilpuram, Kiran Kumar K,
Sunil Kumar Kori, Satha Rao
On Wed, Nov 3, 2021 at 12:18 AM Tomasz Duszynski <tduszynski@marvell.com> wrote:
>
> Fix typos here and there.
>
> Signed-off-by: Tomasz Duszynski <tduszynski@marvell.com>
> Reviewed-by: Jerin Jacob Kollanukkaran <jerinj@marvell.com>
Changed to
common/cnxk: fix a few typos
Fix a few typos.
Fixes: fa8f86a14e2e ("common/cnxk: add build infrastructre and HW
definition")
Fixes: f6d567b03d28 ("common/cnxk: support NIX IRQ")
Fixes: 5e076b609f2a ("common/cnxk: add SE set key for crypto")
Cc: stable@dpdk.org
Signed-off-by: Tomasz Duszynski <tduszynski@marvell.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
Applied to dpdk-next-net-mrvl/for-next-net. Thanks
> ---
> drivers/common/cnxk/roc_api.h | 2 +-
> drivers/common/cnxk/roc_nix_irq.c | 2 +-
> drivers/common/cnxk/roc_se.c | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/common/cnxk/roc_api.h b/drivers/common/cnxk/roc_api.h
> index b8f3667c6c..63c7df7b6c 100644
> --- a/drivers/common/cnxk/roc_api.h
> +++ b/drivers/common/cnxk/roc_api.h
> @@ -12,7 +12,7 @@
> /* Bits manipulation */
> #include "roc_bits.h"
>
> -/* Bitfields manipulation */
> +/* Bit fields manipulation */
> #include "roc_bitfield.h"
>
> /* ROC Constants */
> diff --git a/drivers/common/cnxk/roc_nix_irq.c b/drivers/common/cnxk/roc_nix_irq.c
> index e9aa620abd..a5cd9d4b02 100644
> --- a/drivers/common/cnxk/roc_nix_irq.c
> +++ b/drivers/common/cnxk/roc_nix_irq.c
> @@ -421,7 +421,7 @@ roc_nix_register_cq_irqs(struct roc_nix *roc_nix)
> rc);
> return rc;
> }
> - /* VFIO vector zero is resereved for misc interrupt so
> + /* VFIO vector zero is reserved for misc interrupt so
> * doing required adjustment. (b13bfab4cd)
> */
> if (plt_intr_vec_list_index_set(handle, q,
> diff --git a/drivers/common/cnxk/roc_se.c b/drivers/common/cnxk/roc_se.c
> index 4edbc8e547..6a28609b7c 100644
> --- a/drivers/common/cnxk/roc_se.c
> +++ b/drivers/common/cnxk/roc_se.c
> @@ -357,7 +357,7 @@ roc_se_ciph_key_set(struct roc_se_ctx *se_ctx, roc_se_cipher_type type,
> if (se_ctx->fc_type == ROC_SE_FC_GEN) {
> /*
> * We need to always say IV is from DPTR as user can
> - * sometimes iverride IV per operation.
> + * sometimes override IV per operation.
> */
> fctx->enc.iv_source = ROC_SE_FROM_DPTR;
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-03 15:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-02 18:47 [dpdk-dev] [PATCH] common/cnxk: fix a few typos Tomasz Duszynski
2021-11-03 15:12 ` Jerin Jacob
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).