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)
{
struct atmel_sha_dev *sha_dd;
sha_dd = platform_get_drvdata(pdev);
struct atmel_sha_dev *sha_dd = platform_get_drvdata(pdev);
spin_lock(&atmel_sha.lock);
list_del(&sha_dd->list);