diff options
author | Simon Glass <sjg@chromium.org> | 2020-03-18 11:43:55 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-01 07:45:09 -0600 |
commit | 390b26dc270aa3159df0c31775f91cd374a3dd3a (patch) | |
tree | 79c59e73048a630e3fce89ee763baa4d61a602ac /common/image-fit.c | |
parent | 7dbafe06348ebf28044ef9769bf24866a3deedea (diff) | |
download | u-boot-390b26dc270aa3159df0c31775f91cd374a3dd3a.zip u-boot-390b26dc270aa3159df0c31775f91cd374a3dd3a.tar.gz u-boot-390b26dc270aa3159df0c31775f91cd374a3dd3a.tar.bz2 |
image: Correct comment for fit_conf_get_node()
This should mention that conf_uname can be NULL and should be in the
header file. Fix this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/image-fit.c')
-rw-r--r-- | common/image-fit.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index 6da69d2..3d0cd56 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1712,24 +1712,6 @@ int fit_conf_find_compat(const void *fit, const void *fdt) return best_match_offset; } -/** - * fit_conf_get_node - get node offset for configuration of a given unit name - * @fit: pointer to the FIT format image header - * @conf_uname: configuration node unit name - * - * fit_conf_get_node() finds a configuration (within the '/configurations' - * parent node) of a provided unit name. If configuration is found its node - * offset is returned to the caller. - * - * When NULL is provided in second argument fit_conf_get_node() will search - * for a default configuration node instead. Default configuration node unit - * name is retrieved from FIT_DEFAULT_PROP property of the '/configurations' - * node. - * - * returns: - * configuration node offset when found (>=0) - * negative number on failure (FDT_ERR_* code) - */ int fit_conf_get_node(const void *fit, const char *conf_uname) { int noffset, confs_noffset; |