dmaengine: sf-pdma: apply proper spinlock flags in sf_pdma_prep_dma_memcpy()
[ Upstream commit 94b4cd7c5f ]
The second parameter of spinlock_irq[save/restore] function is flags,
which is the last input parameter of sf_pdma_prep_dma_memcpy().
So declare local variable 'iflags' to be used as the second parameter of
spinlock_irq[save/restore] function.
Signed-off-by: Austin Kim <austin.kim@lge.com>
Link: https://lore.kernel.org/r/20210611065336.GA1121@raspberrypi
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
38715a0ccb
commit
37e1d474a3
1 changed files with 3 additions and 2 deletions
|
|
@ -94,6 +94,7 @@ sf_pdma_prep_dma_memcpy(struct dma_chan *dchan, dma_addr_t dest, dma_addr_t src,
|
|||
{
|
||||
struct sf_pdma_chan *chan = to_sf_pdma_chan(dchan);
|
||||
struct sf_pdma_desc *desc;
|
||||
unsigned long iflags;
|
||||
|
||||
if (chan && (!len || !dest || !src)) {
|
||||
dev_err(chan->pdma->dma_dev.dev,
|
||||
|
|
@ -109,10 +110,10 @@ sf_pdma_prep_dma_memcpy(struct dma_chan *dchan, dma_addr_t dest, dma_addr_t src,
|
|||
desc->dirn = DMA_MEM_TO_MEM;
|
||||
desc->async_tx = vchan_tx_prep(&chan->vchan, &desc->vdesc, flags);
|
||||
|
||||
spin_lock_irqsave(&chan->vchan.lock, flags);
|
||||
spin_lock_irqsave(&chan->vchan.lock, iflags);
|
||||
chan->desc = desc;
|
||||
sf_pdma_fill_desc(desc, dest, src, len);
|
||||
spin_unlock_irqrestore(&chan->vchan.lock, flags);
|
||||
spin_unlock_irqrestore(&chan->vchan.lock, iflags);
|
||||
|
||||
return desc->async_tx;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue