From: Heinrich Schuchardt <xypron.glpk@gmx.de>
To: u-boot@lists.denx.de
Subject: [PATCH v4 7/8] libfdt: Make fdtdec_get_child_count() available for HOST
Date: Mon, 30 Mar 2020 07:29:44 +0200 [thread overview]
Message-ID: <42e56853-e765-3880-7f62-e8d728e20b1e@gmx.de> (raw)
In-Reply-To: <20200330035625.25164-7-kever.yang@rock-chips.com>
On 3/30/20 5:56 AM, Kever Yang wrote:
> The tool need to use fdtdec_get_child_count(), make it available for
> HOST_CC.
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
> Reviewed-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---
>
> Changes in v4:
> - add function comment for fdtdec_get_child_count() in fdt_support.h
>
> Changes in v3: None
> Changes in v2: None
>
> include/fdt_support.h | 9 +++++++++
> lib/fdtdec.c | 11 -----------
> lib/fdtdec_common.c | 11 +++++++++++
> 3 files changed, 20 insertions(+), 11 deletions(-)
>
> diff --git a/include/fdt_support.h b/include/fdt_support.h
> index ba14acd7f6..2eff311fa4 100644
> --- a/include/fdt_support.h
> +++ b/include/fdt_support.h
> @@ -343,6 +343,15 @@ int fdt_get_cells_len(const void *blob, char *nr_cells_name);
> #ifdef USE_HOSTCC
> int fdtdec_get_int(const void *blob, int node, const char *prop_name,
> int default_val);
> +
> +/*
> + * Count child nodes of one parent node.
> + *
> + * @param blob FDT blob
> + * @param node parent node
> + * @return number of child node; 0 if there is not child node
Please, use Sphinx style for function comments. See
https://www.kernel.org/doc/html/latest/doc-guide/kernel-doc.html#function-documentation
Best regards
Heinrich
> + */
> +int fdtdec_get_child_count(const void *blob, int node);
> #endif
> #ifdef CONFIG_FMAN_ENET
> int fdt_update_ethernet_dt(void *blob);
> diff --git a/lib/fdtdec.c b/lib/fdtdec.c
> index eb11fc898e..e13af283a1 100644
> --- a/lib/fdtdec.c
> +++ b/lib/fdtdec.c
> @@ -810,17 +810,6 @@ int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
> return rc;
> }
>
> -int fdtdec_get_child_count(const void *blob, int node)
> -{
> - int subnode;
> - int num = 0;
> -
> - fdt_for_each_subnode(subnode, blob, node)
> - num++;
> -
> - return num;
> -}
> -
> int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
> u8 *array, int count)
> {
> diff --git a/lib/fdtdec_common.c b/lib/fdtdec_common.c
> index 088e9e9063..5775992ef3 100644
> --- a/lib/fdtdec_common.c
> +++ b/lib/fdtdec_common.c
> @@ -53,3 +53,14 @@ unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
> debug("(not found)\n");
> return default_val;
> }
> +
> +int fdtdec_get_child_count(const void *blob, int node)
> +{
> + int subnode;
> + int num = 0;
> +
> + fdt_for_each_subnode(subnode, blob, node)
> + num++;
> +
> + return num;
> +}
>
next prev parent reply other threads:[~2020-03-30 5:29 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-30 3:56 [PATCH v4 1/8] tool: Move ALIGN_MASK to header as common MACRO Kever Yang
2020-03-30 3:56 ` [PATCH v4 2/8] tool: aisimage: use ALIGN instead of self defiend macro Kever Yang
2020-04-24 17:09 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 3/8] tools: mkimage: use common ALIGN to do the size align Kever Yang
2020-04-24 17:09 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 4/8] tools: kwbimage: " Kever Yang
2020-04-24 17:09 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 5/8] tools: imx8mimage: remove redundant code Kever Yang
2020-04-24 17:10 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 6/8] tool: use ALIGN() to align the size Kever Yang
2020-04-24 17:10 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 7/8] libfdt: Make fdtdec_get_child_count() available for HOST Kever Yang
2020-03-30 5:29 ` Heinrich Schuchardt [this message]
2020-03-30 6:29 ` Kever Yang
2020-03-30 8:07 ` Heinrich Schuchardt
2020-03-30 23:57 ` Simon Glass
2020-04-24 17:10 ` Tom Rini
2020-03-30 3:56 ` [PATCH v4 8/8] mkimage: fit_image: Add option to make fit header align Kever Yang
2020-03-30 23:30 ` Tom Rini
2020-04-24 6:52 ` Kever Yang
2020-04-24 17:10 ` Tom Rini
2020-04-24 17:09 ` [PATCH v4 1/8] tool: Move ALIGN_MASK to header as common MACRO Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42e56853-e765-3880-7f62-e8d728e20b1e@gmx.de \
--to=xypron.glpk@gmx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox