From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 37013C05027 for ; Tue, 14 Feb 2023 09:20:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:In-Reply-To: Date:References:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=iv83sITaPrt4UkfL3aCcmw8T1IwwZFj313gHKvR4kIE=; b=iOVf2JkeLqZunu svaAjjR/4YGvB28tvM9pQQeh5prS57u1UzOQmL0ddjDLHcTveLOQG4dPeiBWkmaV3Aygt3oIsRI8J P7SetYbyAAsu1RibtUp2Ur23XymYyVQehRANaDohyzxd/aq4+Oc83yivqNBys/l7q9vWjk13tzXzN jV6J/M9557IJkA1dz74lyt5U4g50dsZIwuWG1hkjyFAKWluD+c5u/KE/fftHmCgm6045a2sQo5xoC ZlSZcH68bO3sN5tWHzhw5OOb8Z4B0owTMfpFNce906mgdIMWp8NunL/EFkAzUW3rGbjD++lt6OJAP DYj1YrlRlz6Gc6L1F0bg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pRrTB-000hNO-3D; Tue, 14 Feb 2023 09:19:25 +0000 Received: from relay4-d.mail.gandi.net ([2001:4b98:dc4:8::224]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pRrT7-000hLT-5b for linux-arm-kernel@lists.infradead.org; Tue, 14 Feb 2023 09:19:23 +0000 Received: (Authenticated sender: peter@korsgaard.com) by mail.gandi.net (Postfix) with ESMTPSA id B9B04E0010; Tue, 14 Feb 2023 09:19:10 +0000 (UTC) Received: from peko by dell.be.48ers.dk with local (Exim 4.94.2) (envelope-from ) id 1pRrSv-003Ap1-G5; Tue, 14 Feb 2023 10:19:09 +0100 From: Peter Korsgaard To: Yang Li Cc: vkoul@kernel.org, michal.simek@xilinx.com, lizhi.hou@amd.com, brian.xu@amd.com, raj.kumar.rampelli@amd.com, dmaengine@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Abaci Robot Subject: Re: [PATCH -next] dmaengine: xilinx: xdma: Fix some kernel-doc comments References: <20230214010344.5354-1-yang.lee@linux.alibaba.com> Date: Tue, 14 Feb 2023 10:19:09 +0100 In-Reply-To: <20230214010344.5354-1-yang.lee@linux.alibaba.com> (Yang Li's message of "Tue, 14 Feb 2023 09:03:44 +0800") Message-ID: <87lel0a9ki.fsf@dell.be.48ers.dk> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230214_011921_397326_FDC4DA31 X-CRM114-Status: GOOD ( 14.67 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org >>>>> "Yang" == Yang Li writes: > Make the description of @xdma_chan to @xchan to silence the warnings: > drivers/dma/xilinx/xdma.c:283: warning: Function parameter or member 'xchan' not described in 'xdma_xfer_start' > drivers/dma/xilinx/xdma.c:283: warning: Excess function parameter 'xdma_chan' description in 'xdma_xfer_start' > Reported-by: Abaci Robot > Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=4051 > Signed-off-by: Yang Li Acked-by: Peter Korsgaard > --- > drivers/dma/xilinx/xdma.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > diff --git a/drivers/dma/xilinx/xdma.c b/drivers/dma/xilinx/xdma.c > index 462109c61653..93ee298d52b8 100644 > --- a/drivers/dma/xilinx/xdma.c > +++ b/drivers/dma/xilinx/xdma.c > @@ -277,7 +277,7 @@ xdma_alloc_desc(struct xdma_chan *chan, u32 desc_num) > /** > * xdma_xfer_start - Start DMA transfer > - * @xdma_chan: DMA channel pointer > + * @xchan: DMA channel pointer > */ > static int xdma_xfer_start(struct xdma_chan *xchan) > { > -- > 2.20.1.7.g153144c -- Bye, Peter Korsgaard _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel