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>
        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);