Message ID | 20190726134223.94782-1-ferruh.yigit@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | akhil goyal |
Headers | show |
Series | cryptodev: fix typo | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
ci/Intel-compilation | success | Compilation OK |
ci/iol-Compile-Testing | success | Compile Testing PASS |
> > Remove extra ';' which is probably added unintentionally, reported by > ./devtools/check-includes.sh script. > > Fixes: 26008aaed14c ("cryptodev: add asymmetric xform and op definitions") > Cc: stable@dpdk.org > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> > --- > lib/librte_cryptodev/rte_crypto_asym.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/librte_cryptodev/rte_crypto_asym.h > b/lib/librte_cryptodev/rte_crypto_asym.h > index 044224214..4fbef2f89 100644 > --- a/lib/librte_cryptodev/rte_crypto_asym.h > +++ b/lib/librte_cryptodev/rte_crypto_asym.h > @@ -383,7 +383,7 @@ struct rte_cryptodev_asym_session; > */ > struct rte_crypto_rsa_op_param { > enum rte_crypto_asym_op_type op_type; > - /**< Type of RSA operation for transform */; > + /**< Type of RSA operation for transform */ > > rte_crypto_param message; > /**< > -- > 2.21.0 Acked-by: Akhil Goyal <akhil.goyal@nxp.com> Applied to dpdk-next-crypto Thanks.
diff --git a/lib/librte_cryptodev/rte_crypto_asym.h b/lib/librte_cryptodev/rte_crypto_asym.h index 044224214..4fbef2f89 100644 --- a/lib/librte_cryptodev/rte_crypto_asym.h +++ b/lib/librte_cryptodev/rte_crypto_asym.h @@ -383,7 +383,7 @@ struct rte_cryptodev_asym_session; */ struct rte_crypto_rsa_op_param { enum rte_crypto_asym_op_type op_type; - /**< Type of RSA operation for transform */; + /**< Type of RSA operation for transform */ rte_crypto_param message; /**<
Remove extra ';' which is probably added unintentionally, reported by ./devtools/check-includes.sh script. Fixes: 26008aaed14c ("cryptodev: add asymmetric xform and op definitions") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> --- lib/librte_cryptodev/rte_crypto_asym.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)