From: Deepak Kumar Jain Date: Fri, 16 Sep 2016 10:49:34 +0000 (+0100) Subject: crypto/null: fix key size increment value X-Git-Tag: spdx-start~5739 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=6bc430031883c018e49b092a415b2c40ba073715;p=dpdk.git crypto/null: fix key size increment value This patch fixes the values of increment in key size. Fixes: 94b0ad8e0aa5 ("null_crypto: add driver for null crypto operations") Signed-off-by: Deepak Kumar Jain Acked-by: Fiona Trahe --- diff --git a/drivers/crypto/null/null_crypto_pmd_ops.c b/drivers/crypto/null/null_crypto_pmd_ops.c index cf1a5196ff..26ff631932 100644 --- a/drivers/crypto/null/null_crypto_pmd_ops.c +++ b/drivers/crypto/null/null_crypto_pmd_ops.c @@ -70,7 +70,7 @@ static const struct rte_cryptodev_capabilities null_crypto_pmd_capabilities[] = .key_size = { .min = 0, .max = 0, - .increment = 8 + .increment = 0 }, .iv_size = { .min = 0,