diff options
author | Vinod Koul <vkoul@kernel.org> | 2020-10-07 14:01:11 +0530 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-10-08 15:18:43 +0530 |
commit | d11913f2fb39af2c1f334fba2dd30d3561c5b3a9 (patch) | |
tree | a16290564723fc73c1ca700b6c9cb341d9835b83 /drivers/dma/xilinx | |
parent | a5e399a5a0996674f2b800a757deb6d475a12ef1 (diff) |
dmaengine: xilinx_dma: fix kernel-doc style for tasklet
Commit f19a11d40a78 ("dmaengine: xilinx: convert tasklets to use new
tasklet_setup() API") updated driver to use new tasklet_setup() API but
missed to update the documentation for the tasklet function.
Fixes: f19a11d40a78 ("dmaengine: xilinx: convert tasklets to use new tasklet_setup() API")
Acked-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/20201007083113.567559-4-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/xilinx')
-rw-r--r-- | drivers/dma/xilinx/xilinx_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c index a9eb85ee6daf..ecff35402860 100644 --- a/drivers/dma/xilinx/xilinx_dma.c +++ b/drivers/dma/xilinx/xilinx_dma.c @@ -1044,7 +1044,7 @@ static void xilinx_dma_chan_desc_cleanup(struct xilinx_dma_chan *chan) /** * xilinx_dma_do_tasklet - Schedule completion tasklet - * @data: Pointer to the Xilinx DMA channel structure + * @t: Pointer to the Xilinx DMA channel structure */ static void xilinx_dma_do_tasklet(struct tasklet_struct *t) { |