From patchwork Wed Oct 7 08:31:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 11819955 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 9DB92618 for ; Wed, 7 Oct 2020 08:31:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7EA9921707 for ; Wed, 7 Oct 2020 08:31:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602059504; bh=BYEWkuMv4rR/6rSXCdWQtRFeiSp4JyU3cpI+RBBGAxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=gdcMYfBUgniS6EqDd8QhAHal9CSd6nwdvLj1ovXGBqzzjiD3N8ROshcb466cYdS89 7q6hMXIP4yzCzXP5X3m033+VGGtYSRZNhPgiK4Xk0m12L6Q4p9ddeupoOoOiDDWo/Y W/ir9VqKNh6xtlkivS/VCZjfqtAsN9xH6n0vCsYc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727868AbgJGIbl (ORCPT ); Wed, 7 Oct 2020 04:31:41 -0400 Received: from mail.kernel.org ([198.145.29.99]:58682 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726463AbgJGIbk (ORCPT ); Wed, 7 Oct 2020 04:31:40 -0400 Received: from localhost.localdomain (unknown [122.171.222.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1871B2083B; Wed, 7 Oct 2020 08:31:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602059499; bh=BYEWkuMv4rR/6rSXCdWQtRFeiSp4JyU3cpI+RBBGAxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QxTEzewNjnpVIAWIh3qLpZMusonlHNetGeX4+o/2KuMuW9xRRlRudSk8Cvnf9Yl4b OTnCYtan9JzxUbA9AcNziAYC9D5CTYscC8Vdwvedw5LZ/Tnc03Dtfl0BltLMsJ4wRk xe9ZX8qWQni2GYysoKseX80ImTUNGXgP0DCNSr1Y= From: Vinod Koul To: dmaengine@vger.kernel.org Cc: Vinod Koul , Allen Pais , Romain Perier , linux-kernel@vger.kernel.org, Michal Simek , =?utf-8?q?Rafa=C5=82_Hibner?= , Radhey Shyam Pandey , Appana Durga Kedareswara rao Subject: [PATCH 3/5] dmaengine: xilinx_dma: fix kernel-doc style for tasklet Date: Wed, 7 Oct 2020 14:01:11 +0530 Message-Id: <20201007083113.567559-4-vkoul@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20201007083113.567559-1-vkoul@kernel.org> References: <20201007083113.567559-1-vkoul@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org 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") Signed-off-by: Vinod Koul Acked-by: Michal Simek --- drivers/dma/xilinx/xilinx_dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {