summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorYork Sun <york.sun@nxp.com>2017-09-15 15:21:13 (GMT)
committerTom Rini <trini@konsulko.com>2017-09-22 11:40:04 (GMT)
commit933f67aa56ea742f014b21bfe50a16a00e97b9bd (patch)
treefd62ea0d0edd66cee364e22fa3912847e103f9e1 /common
parent7cc238f2eea471471c0204777063b1ee622ec939 (diff)
downloadu-boot-933f67aa56ea742f014b21bfe50a16a00e97b9bd.tar.xz
spl: Fix compiling warning on gunzip argument
common/spl/spl_fit.c:201:12: warning: passing argument 4 of ‘gunzip’ from incompatible pointer type [-Wincompatible-pointer-types] src, &length)) Signed-off-by: York Sun <york.sun@nxp.com> Reported-by: Heinrich Schuchardt <xypron.glpk@gmx.de> CC: Jean-Jacques Hiblot <jjhiblot@ti.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_fit.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
index 49ccf1c..32d9ee5 100644
--- a/common/spl/spl_fit.c
+++ b/common/spl/spl_fit.c
@@ -135,6 +135,7 @@ static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
int offset;
size_t length;
int len;
+ ulong size;
ulong load_addr, load_ptr;
void *src;
ulong overhead;
@@ -197,11 +198,13 @@ static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
IS_ENABLED(CONFIG_SPL_GZIP) &&
image_comp == IH_COMP_GZIP &&
type == IH_TYPE_KERNEL) {
+ size = length;
if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN,
- src, &length)) {
+ src, &size)) {
puts("Uncompressing error\n");
return -EIO;
}
+ length = size;
} else {
memcpy((void *)load_addr, src, length);
}