mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 02:30:53 +07:00
crypto: atmel-sha - initialize spinlock in probe
Kernel will report "BUG: spinlock lockup suspected on CPU#0" when CONFIG_DEBUG_SPINLOCK is enabled in kernel config and the spinlock is used at the first time. It's caused by uninitialized spinlock, so just initialize it in probe. Signed-off-by: Leilei Zhao <leilei.zhao@atmel.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
803eeae8f3
commit
62728e8202
@ -1367,6 +1367,7 @@ static int atmel_sha_probe(struct platform_device *pdev)
|
|||||||
platform_set_drvdata(pdev, sha_dd);
|
platform_set_drvdata(pdev, sha_dd);
|
||||||
|
|
||||||
INIT_LIST_HEAD(&sha_dd->list);
|
INIT_LIST_HEAD(&sha_dd->list);
|
||||||
|
spin_lock_init(&sha_dd->lock);
|
||||||
|
|
||||||
tasklet_init(&sha_dd->done_task, atmel_sha_done_task,
|
tasklet_init(&sha_dd->done_task, atmel_sha_done_task,
|
||||||
(unsigned long)sha_dd);
|
(unsigned long)sha_dd);
|
||||||
|
Loading…
Reference in New Issue
Block a user