All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dmaengine: pl330: fix argument for tasklet
@ 2020-09-30 12:17 Vinod Koul
  2020-10-01  5:44 ` Vinod Koul
  0 siblings, 1 reply; 2+ messages in thread
From: Vinod Koul @ 2020-09-30 12:17 UTC (permalink / raw)
  To: dmaengine; +Cc: Vinod Koul, kernel test robot, Allen Pais

Commit 59cd818763e8 ("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: 59cd818763e8 ("dmaengine: fsl: convert tasklets to use new tasklet_setup() API")
Reported-by: kernel test robot <lkp@intel.com>
Cc: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
---
 drivers/dma/pl330.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c
index d98fb318dd2d..e9f0101d92fa 100644
--- a/drivers/dma/pl330.c
+++ b/drivers/dma/pl330.c
@@ -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);
 }
 
 /*
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] dmaengine: pl330: fix argument for tasklet
  2020-09-30 12:17 [PATCH] dmaengine: pl330: fix argument for tasklet Vinod Koul
@ 2020-10-01  5:44 ` Vinod Koul
  0 siblings, 0 replies; 2+ messages in thread
From: Vinod Koul @ 2020-10-01  5:44 UTC (permalink / raw)
  To: dmaengine; +Cc: kernel test robot, Allen Pais

On 30-09-20, 17:47, Vinod Koul wrote:
> Commit 59cd818763e8 ("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.

kbuild bot is happy, so merged this and pushed this branch to next

-- 
~Vinod

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-01  5:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-30 12:17 [PATCH] dmaengine: pl330: fix argument for tasklet Vinod Koul
2020-10-01  5:44 ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.