Skip to content

Commit

Permalink
crypto: atmel-sha - initialize spinlock in probe
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Leilei Zhao authored and Herbert Xu committed Apr 8, 2015
1 parent 803eeae commit 62728e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/crypto/atmel-sha.c
Original file line number Diff line number Diff line change
Expand Up @@ -1367,6 +1367,7 @@ static int atmel_sha_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, sha_dd);

INIT_LIST_HEAD(&sha_dd->list);
spin_lock_init(&sha_dd->lock);

tasklet_init(&sha_dd->done_task, atmel_sha_done_task,
(unsigned long)sha_dd);
Expand Down

0 comments on commit 62728e8

Please sign in to comment.