1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

crypto: atmel-sha - initialize sha_dd while declaring

Initialize sha_dd with platform_get_drvdata() when declaring it.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Claudiu Beznea 2022-07-06 11:58:44 +03:00 committed by Herbert Xu
parent 2e26efb384
commit c6a16f4bbf

View file

@ -2666,9 +2666,7 @@ err_tasklet_kill:
static int atmel_sha_remove(struct platform_device *pdev) static int atmel_sha_remove(struct platform_device *pdev)
{ {
struct atmel_sha_dev *sha_dd; struct atmel_sha_dev *sha_dd = platform_get_drvdata(pdev);
sha_dd = platform_get_drvdata(pdev);
spin_lock(&atmel_sha.lock); spin_lock(&atmel_sha.lock);
list_del(&sha_dd->list); list_del(&sha_dd->list);