Commit 86ae924a authored by Vinod Koul's avatar Vinod Koul
Browse files

dmaengine: pl330: fix argument for tasklet



Commit 59cd8187 ("dmaengine: fsl: convert tasklets to use new
tasklet_setup() API") converted the pl330 driver to use new tasklet
functions but missed that driver calls the tasklet function directly as
well, so update it.

Fixes: 59cd8187 ("dmaengine: fsl: convert tasklets to use new tasklet_setup() API")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20200930121735.49699-1-vkoul@kernel.org


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 59cd8187
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2484,7 +2484,7 @@ static void pl330_issue_pending(struct dma_chan *chan)
	list_splice_tail_init(&pch->submitted_list, &pch->work_list);
	spin_unlock_irqrestore(&pch->lock, flags);

	pl330_tasklet((unsigned long)pch);
	pl330_tasklet(&pch->task);
}

/*