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.z...@atmel.com>
Acked-by: Nicolas Ferre <nicolas.fe...@atmel.com>
---
 drivers/crypto/atmel-tdes.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/crypto/atmel-tdes.c b/drivers/crypto/atmel-tdes.c
index 258772d..3517e2a 100644
--- a/drivers/crypto/atmel-tdes.c
+++ b/drivers/crypto/atmel-tdes.c
@@ -1370,6 +1370,7 @@ static int atmel_tdes_probe(struct platform_device *pdev)
        platform_set_drvdata(pdev, tdes_dd);
 
        INIT_LIST_HEAD(&tdes_dd->list);
+       spin_lock_init(&tdes_dd->lock);
 
        tasklet_init(&tdes_dd->done_task, atmel_tdes_done_task,
                                        (unsigned long)tdes_dd);
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to