aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/qce
diff options
context:
space:
mode:
authorEneas U de Queiroz <cotequeiroz@gmail.com>2020-03-04 15:24:55 -0300
committerHerbert Xu <herbert@gondor.apana.org.au>2020-03-12 23:00:13 +1100
commitd069b20403d7fe5585d38d2c04b2d429fc95f3e6 (patch)
tree8015dbc7549410f944181eebc566efcbe3307d57 /drivers/crypto/qce
parentcrypto: qat - simplify the qat_crypto function (diff)
downloadlinux-dev-d069b20403d7fe5585d38d2c04b2d429fc95f3e6.tar.xz
linux-dev-d069b20403d7fe5585d38d2c04b2d429fc95f3e6.zip
crypto: qce - fix wrong config symbol reference
The CONFIG_CRYPTO_DEV_QCE_SOFT_THRESHOLD symbol was renamed during development, but the stringify reference in the parameter description sneaked by unnoticed. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/qce')
-rw-r--r--drivers/crypto/qce/skcipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/qce/skcipher.c b/drivers/crypto/qce/skcipher.c
index a4f6ec1b64c7..9412433f3b21 100644
--- a/drivers/crypto/qce/skcipher.c
+++ b/drivers/crypto/qce/skcipher.c
@@ -18,7 +18,7 @@ module_param(aes_sw_max_len, uint, 0644);
MODULE_PARM_DESC(aes_sw_max_len,
"Only use hardware for AES requests larger than this "
"[0=always use hardware; anything <16 breaks AES-GCM; default="
- __stringify(CONFIG_CRYPTO_DEV_QCE_SOFT_THRESHOLD)"]");
+ __stringify(CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN)"]");
static LIST_HEAD(skcipher_algs);