|
@@ -836,17 +836,18 @@ static struct sdma_channel *to_sdma_chan(struct dma_chan *chan)
|
|
|
|
|
|
static dma_cookie_t sdma_tx_submit(struct dma_async_tx_descriptor *tx)
|
|
static dma_cookie_t sdma_tx_submit(struct dma_async_tx_descriptor *tx)
|
|
{
|
|
{
|
|
|
|
+ unsigned long flags;
|
|
struct sdma_channel *sdmac = to_sdma_chan(tx->chan);
|
|
struct sdma_channel *sdmac = to_sdma_chan(tx->chan);
|
|
struct sdma_engine *sdma = sdmac->sdma;
|
|
struct sdma_engine *sdma = sdmac->sdma;
|
|
dma_cookie_t cookie;
|
|
dma_cookie_t cookie;
|
|
|
|
|
|
- spin_lock_irq(&sdmac->lock);
|
|
|
|
|
|
+ spin_lock_irqsave(&sdmac->lock, flags);
|
|
|
|
|
|
cookie = sdma_assign_cookie(sdmac);
|
|
cookie = sdma_assign_cookie(sdmac);
|
|
|
|
|
|
sdma_enable_channel(sdma, sdmac->channel);
|
|
sdma_enable_channel(sdma, sdmac->channel);
|
|
|
|
|
|
- spin_unlock_irq(&sdmac->lock);
|
|
|
|
|
|
+ spin_unlock_irqrestore(&sdmac->lock, flags);
|
|
|
|
|
|
return cookie;
|
|
return cookie;
|
|
}
|
|
}
|