From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 015B653A7 for ; Wed, 18 Jan 2023 20:15:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 508D6C433EF; Wed, 18 Jan 2023 20:15:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674072943; bh=J4WWSguMR9lTheJDbGf665NqLi4YZhutquYw9Q/2MBE=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=fKdR5/WNd7sHsQqLKMilgWYTwWn9dblHmb2+Ibnk12p4TVHXb26JhLviMWswH9toD j/Kz4/IkT9CRJ/+UJfp46aznGs2Sj19EOqJEnv8XNWnSev/NZXb8CWFX+40+bmN9oM dFhUbdwgXvwwyzB0wVtKVkbr8zXKclSeihSjD0z4SapQ0JYenshV9If33jZVEDinK6 ToNdxR5tsdDqH7oKDP16SlLxetzh8EZ07mBsYhm3qTXVFmdlsIyzIfTLexLSNHGNEb EB/vilqNSVeVNIFb6DjilEJ38D44g+EwrRVXQIF1sdRZ3OWKpyeXbo+tbMv+sWC9RD T0GCy4GzsgLUw== Date: Wed, 18 Jan 2023 14:15:41 -0600 From: Bjorn Helgaas To: Yang Yingliang Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, ntb@lists.linux.dev, jdmason@kudzu.us, dave.jiang@intel.com, allenbh@gmail.com, lpieralisi@kernel.org, kw@linux.com, mani@kernel.org, kishon@kernel.org, bhelgaas@google.com Subject: Re: [PATCH] PCI: endpoint: pci-epf-vntb: add kernel-doc for num_mws on epf_ntb_mw_bar_clear() Message-ID: <20230118201541.GA254794@bhelgaas> Precedence: bulk X-Mailing-List: ntb@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230103024907.293853-1-yangyingliang@huawei.com> On Tue, Jan 03, 2023 at 10:49:07AM +0800, Yang Yingliang wrote: > Commit 8e4bfbe644a6 ("PCI: endpoint: pci-epf-vntb: fix error handle > in epf_ntb_mw_bar_init()") added a "num_mws" parameter to > epf_ntb_mw_bar_clear() but failed to add kernel-doc for num_mws. > > This patch adds kernel-doc for num_mws on epf_ntb_mw_bar_clear(). > > Fixes: 8e4bfbe644a6 ("PCI: endpoint: pci-epf-vntb: fix error handle in epf_ntb_mw_bar_init()") > Signed-off-by: Yang Yingliang Applied to pci/misc for v6.3, thanks! > --- > drivers/pci/endpoint/functions/pci-epf-vntb.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/pci/endpoint/functions/pci-epf-vntb.c b/drivers/pci/endpoint/functions/pci-epf-vntb.c > index 04698e7995a5..b7c7a8af99f4 100644 > --- a/drivers/pci/endpoint/functions/pci-epf-vntb.c > +++ b/drivers/pci/endpoint/functions/pci-epf-vntb.c > @@ -652,6 +652,7 @@ static int epf_ntb_mw_bar_init(struct epf_ntb *ntb) > /** > * epf_ntb_mw_bar_clear() - Clear Memory window BARs > * @ntb: NTB device that facilitates communication between HOST and VHOST > + * @num_mws: the number of Memory window BARs that to be cleared > */ > static void epf_ntb_mw_bar_clear(struct epf_ntb *ntb, int num_mws) > { > -- > 2.25.1 >