diff options
author | Vinod Koul <vkoul@kernel.org> | 2020-10-07 11:31:12 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-10-08 12:48:46 +0300 |
commit | 2997ced4eca9b57eabb777141d9db0148d0922f1 (patch) | |
tree | dacb00587461bd97265591ce2407f334ba2d111f /drivers/dma/xilinx | |
parent | d11913f2fb39af2c1f334fba2dd30d3561c5b3a9 (diff) | |
download | linux-2997ced4eca9b57eabb777141d9db0148d0922f1.tar.xz |
dmaengine: zynqmp_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-5-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/xilinx')
-rw-r--r-- | drivers/dma/xilinx/zynqmp_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/xilinx/zynqmp_dma.c b/drivers/dma/xilinx/zynqmp_dma.c index 15b0f961fdf8..d8419565b92c 100644 --- a/drivers/dma/xilinx/zynqmp_dma.c +++ b/drivers/dma/xilinx/zynqmp_dma.c @@ -742,7 +742,7 @@ static irqreturn_t zynqmp_dma_irq_handler(int irq, void *data) /** * zynqmp_dma_do_tasklet - Schedule completion tasklet - * @data: Pointer to the ZynqMP DMA channel structure + * @t: Pointer to the ZynqMP DMA channel structure */ static void zynqmp_dma_do_tasklet(struct tasklet_struct *t) { |