Skip to content

Commit 86ae924

Browse files
committed
dmaengine: pl330: fix argument for tasklet
Commit 59cd818 ("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: 59cd818 ("dmaengine: fsl: convert tasklets to use new tasklet_setup() API") Reported-by: kernel test robot <lkp@intel.com> Link: https://lore.kernel.org/r/20200930121735.49699-1-vkoul@kernel.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent 59cd818 commit 86ae924

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/dma/pl330.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2484,7 +2484,7 @@ static void pl330_issue_pending(struct dma_chan *chan)
24842484
list_splice_tail_init(&pch->submitted_list, &pch->work_list);
24852485
spin_unlock_irqrestore(&pch->lock, flags);
24862486

2487-
pl330_tasklet((unsigned long)pch);
2487+
pl330_tasklet(&pch->task);
24882488
}
24892489

24902490
/*

0 commit comments

Comments
 (0)