diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:38 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:02:01 -0400 |
commit | 718fecae4ac15307cdf835883ff18ce48aecef2b (patch) | |
tree | 1aaab0951003be8b9c887d43076c00a0ed3f7a90 /common | |
parent | 2115d89db8498e075d1016bc66ae44d95bbd38fe (diff) | |
download | u-boot-imx-718fecae4ac15307cdf835883ff18ce48aecef2b.zip u-boot-imx-718fecae4ac15307cdf835883ff18ce48aecef2b.tar.gz u-boot-imx-718fecae4ac15307cdf835883ff18ce48aecef2b.tar.bz2 |
image-fit: make local function static
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'common')
-rw-r--r-- | common/image-fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index 2016d1e..a272ea2 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1434,7 +1434,7 @@ void fit_conf_print(const void *fit, int noffset, const char *p) printf("%s FDT: %s\n", p, uname); } -int fit_image_select(const void *fit, int rd_noffset, int verify) +static int fit_image_select(const void *fit, int rd_noffset, int verify) { fit_image_print(fit, rd_noffset, " "); |