From 6bc430031883c018e49b092a415b2c40ba073715 Mon Sep 17 00:00:00 2001 From: Deepak Kumar Jain Date: Fri, 16 Sep 2016 11:49:34 +0100 Subject: [PATCH] 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 --- drivers/crypto/null/null_crypto_pmd_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.20.1