diff options
author | Tom Rini <trini@konsulko.com> | 2018-05-08 14:34:05 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-23 17:30:02 -0400 |
commit | 16c4b169af1295972fb09b754b8ba00c55c39e08 (patch) | |
tree | 413a0cfad35adaebd2c44bd2b158a4a9281e694b /include/image.h | |
parent | d405dae374d9d342fb9aa3fa231e2189ae025914 (diff) | |
download | u-boot-16c4b169af1295972fb09b754b8ba00c55c39e08.tar.gz |
FIT: Make fit_conf_print() be a static function
We only call fit_conf_print from one place in the code, so mark it as
static and move it up to where we call it. This in turn has us move a
few other already static functions up further as well.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/image.h b/include/image.h index df701e3470..925eb8b30f 100644 --- a/include/image.h +++ b/include/image.h @@ -1046,8 +1046,6 @@ int fit_conf_get_node(const void *fit, const char *conf_uname); int fit_conf_get_prop_node(const void *fit, int noffset, const char *prop_name); -void fit_conf_print(const void *fit, int noffset, const char *p); - int fit_check_ramdisk(const void *fit, int os_noffset, uint8_t arch, int verify); |