Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Eneas U de Queiroz and committed by
Herbert Xu
d069b204 542b7ffe

+1 -1
+1 -1
drivers/crypto/qce/skcipher.c
··· 18 18 MODULE_PARM_DESC(aes_sw_max_len, 19 19 "Only use hardware for AES requests larger than this " 20 20 "[0=always use hardware; anything <16 breaks AES-GCM; default=" 21 - __stringify(CONFIG_CRYPTO_DEV_QCE_SOFT_THRESHOLD)"]"); 21 + __stringify(CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN)"]"); 22 22 23 23 static LIST_HEAD(skcipher_algs); 24 24