mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
crypto: atmel-aes - 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
1d1b91637c
commit
8a10eb8d36
1 changed files with 1 additions and 0 deletions
|
@ -1341,6 +1341,7 @@ static int atmel_aes_probe(struct platform_device *pdev)
|
|||
platform_set_drvdata(pdev, aes_dd);
|
||||
|
||||
INIT_LIST_HEAD(&aes_dd->list);
|
||||
spin_lock_init(&aes_dd->lock);
|
||||
|
||||
tasklet_init(&aes_dd->done_task, atmel_aes_done_task,
|
||||
(unsigned long)aes_dd);
|
||||
|
|
Loading…
Reference in a new issue