crypto: qce - fix wrong config symbol reference
authorEneas U de Queiroz <cotequeiroz@gmail.com>
Wed, 4 Mar 2020 18:24:55 +0000 (15:24 -0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 12 Mar 2020 12:00:13 +0000 (23:00 +1100)
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>
drivers/crypto/qce/skcipher.c

index a4f6ec1b64c72b6cd23daf18e560cfbe20e99dde..9412433f3b214c99a8cdd60c89dd014dbe884eee 100644 (file)
@@ -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);