diff options
author | 2025-04-25 15:45:15 +0300 | |
---|---|---|
committer | 2025-04-28 19:45:26 +0800 | |
commit | 8e379e8fb83f426a60a3ae0827743ebf881f6fde (patch) | |
tree | 782cb10cb28e24ca53bd98b79ce00c22fdebb4f2 /drivers/crypto | |
parent | crypto: sun8i-ce-cipher - fix error handling in sun8i_ce_cipher_prepare() (diff) | |
download | linux-rng-8e379e8fb83f426a60a3ae0827743ebf881f6fde.tar.xz linux-rng-8e379e8fb83f426a60a3ae0827743ebf881f6fde.zip |
crypto: sun8i-ce-cipher - use crypto_skcipher_driver_name()
Use crypto_skcipher_driver_name() helper from <crypto/skcipher.h>, instead
of accessing struct crypto_alg directly.
Signed-off-by: Ovidiu Panait <ovidiu.panait.oss@gmail.com>
Acked-by: Corentin LABBE <clabbe.montjoie@gmail.com>
Tested-by: Corentin LABBE <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c index 05f67661553c..ba50f98fdf09 100644 --- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c +++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c @@ -438,7 +438,7 @@ int sun8i_ce_cipher_init(struct crypto_tfm *tfm) crypto_skcipher_reqsize(op->fallback_tfm)); memcpy(algt->fbname, - crypto_tfm_alg_driver_name(crypto_skcipher_tfm(op->fallback_tfm)), + crypto_skcipher_driver_name(op->fallback_tfm), CRYPTO_MAX_ALG_NAME); err = pm_runtime_get_sync(op->ce->dev); |