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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03B9DC433FE for ; Wed, 27 Oct 2021 16:10:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D63EB610E6 for ; Wed, 27 Oct 2021 16:10:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242958AbhJ0QM3 (ORCPT ); Wed, 27 Oct 2021 12:12:29 -0400 Received: from mail.kernel.org ([198.145.29.99]:48122 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237855AbhJ0QM0 (ORCPT ); Wed, 27 Oct 2021 12:12:26 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (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 DF6E860FBF; Wed, 27 Oct 2021 16:10:00 +0000 (UTC) Received: from rostedt by gandalf.local.home with local (Exim 4.95) (envelope-from ) id 1mflV2-000xm8-2E; Wed, 27 Oct 2021 12:10:00 -0400 Message-ID: <20211027160959.906811049@goodmis.org> User-Agent: quilt/0.66 Date: Wed, 27 Oct 2021 12:09:41 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Ingo Molnar , Andrew Morton , Stephen Rothwell , Masami Hiramatsu Subject: [for-next][PATCH 01/15] lib/bootconfig: Fix the xbc_get_info kerneldoc References: <20211027160940.084904334@goodmis.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Masami Hiramatsu Fix the kernel doc of xbc_get_info() to add '@' to the parameters. Link: https://lkml.kernel.org/r/163525086738.676803.15352231787913236933.stgit@devnote2 Fixes: e306220cb7b7 ("bootconfig: Add xbc_get_info() for the node information") Reported-by: Stephen Rothwell Signed-off-by: Masami Hiramatsu Signed-off-by: Steven Rostedt (VMware) --- lib/bootconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bootconfig.c b/lib/bootconfig.c index 3276675b25e1..a10ab25f6fcc 100644 --- a/lib/bootconfig.c +++ b/lib/bootconfig.c @@ -67,8 +67,8 @@ static inline void xbc_free_mem(void *addr, size_t size) #endif /** * xbc_get_info() - Get the information of loaded boot config - * node_size: A pointer to store the number of nodes. - * data_size: A pointer to store the size of bootconfig data. + * @node_size: A pointer to store the number of nodes. + * @data_size: A pointer to store the size of bootconfig data. * * Get the number of used nodes in @node_size if it is not NULL, * and the size of bootconfig data in @data_size if it is not NULL. -- 2.33.0