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 BB3B82915 for ; Mon, 8 May 2023 10:41:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3DEF8C4339B; Mon, 8 May 2023 10:41:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1683542463; bh=K73JapF0uO1cI6Bv1v5F72BtGVNp+dXws7n2SJpgN/g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jgzgZsvUs1N1Z2AFvc1ASHmLqoF5Pz2nFb4lDNs+KyJs4nOKfJl+GIJszFk6DA9rC Pj39i5a5RHFgSstjhl5SdJ3M71nH3XZo/TwaY7EWleo78iJPvzUbuWpA7ws33HQnTF S1PgRN2rCS6lq74xSEVg5c9THGcbWUOUwh6OCoSY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Marco Pagani , Tom Rix , Xu Yilun , Sasha Levin Subject: [PATCH 6.2 443/663] fpga: bridge: fix kernel-doc parameter description Date: Mon, 8 May 2023 11:44:29 +0200 Message-Id: <20230508094442.451672670@linuxfoundation.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230508094428.384831245@linuxfoundation.org> References: <20230508094428.384831245@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Marco Pagani [ Upstream commit 7ef1a2c1c9dffa177ecc3ea50b7f5ee63a621137 ] Fix the kernel-doc description for the "struct fpga_image_info *info" parameter of the fpga_bridge_get() function. Fixes: 060ac5c8fa7b ("fpga: bridge: kernel-doc fixes") Signed-off-by: Marco Pagani Reviewed-by: Tom Rix Acked-by: Xu Yilun Link: https://lore.kernel.org/r/20230301140309.512578-1-marpagan@redhat.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/fpga/fpga-bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/fpga/fpga-bridge.c b/drivers/fpga/fpga-bridge.c index 13918c8c839ea..833ce13ff6f86 100644 --- a/drivers/fpga/fpga-bridge.c +++ b/drivers/fpga/fpga-bridge.c @@ -115,7 +115,7 @@ static int fpga_bridge_dev_match(struct device *dev, const void *data) /** * fpga_bridge_get - get an exclusive reference to an fpga bridge * @dev: parent device that fpga bridge was registered with - * @info: fpga manager info + * @info: fpga image specific information * * Given a device, get an exclusive reference to an fpga bridge. * -- 2.39.2