diff mbox series

crypto: qce - fix wrong config symbol reference

Message ID 20200304182455.29066-1-cotequeiroz@gmail.com (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series crypto: qce - fix wrong config symbol reference | expand

Commit Message

Eneas U de Queiroz March 4, 2020, 6:24 p.m. UTC
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>

Comments

Herbert Xu March 12, 2020, 12:39 p.m. UTC | #1
On Wed, Mar 04, 2020 at 03:24:55PM -0300, Eneas U de Queiroz wrote:
> 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>

Patch applied.  Thanks.
diff mbox series

Patch

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);