diff options
author | Vinod Koul <vkoul@kernel.org> | 2020-10-07 10:31:09 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-10-08 11:48:37 +0200 |
commit | 62e13a583066c12308ed10f0a45ddc44b444c898 (patch) | |
tree | 7a57c4ca00792b528d62600fec8c33df58194010 /drivers/dma | |
parent | dmaengine: xilinx: dpdma: convert tasklets to use new tasklet_setup() API (diff) | |
download | linux-62e13a583066c12308ed10f0a45ddc44b444c898.tar.xz linux-62e13a583066c12308ed10f0a45ddc44b444c898.zip |
dmaengine: altera-msgdma: fix kernel-doc style for tasklet
Commit 6752e40d669a ("dmaengine: altera-msgdma: 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: 6752e40d669a ("dmaengine: altera-msgdma: convert tasklets to use new tasklet_setup() API")
Link: https://lore.kernel.org/r/20201007083113.567559-2-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/altera-msgdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/altera-msgdma.c b/drivers/dma/altera-msgdma.c index 4d6751bf6f11..9a841ce5f0c5 100644 --- a/drivers/dma/altera-msgdma.c +++ b/drivers/dma/altera-msgdma.c @@ -678,7 +678,7 @@ static int msgdma_alloc_chan_resources(struct dma_chan *dchan) /** * msgdma_tasklet - Schedule completion tasklet - * @data: Pointer to the Altera sSGDMA channel structure + * @t: Pointer to the Altera sSGDMA channel structure */ static void msgdma_tasklet(struct tasklet_struct *t) { |