mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
image: Update zstd to avoid reporting error twice
The zstd implementation prints the error in image_decomp() which is incorrect and does not match other algorithms. Drop this and let the caller report the error. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b876eb87e9
commit
02ace2cd49
1 changed files with 3 additions and 5 deletions
|
@ -534,12 +534,10 @@ int image_decomp(int comp, ulong load, ulong image_start, int type,
|
|||
abuf_init_set(&in, image_buf, image_len);
|
||||
abuf_init_set(&in, load_buf, unc_len);
|
||||
ret = zstd_decompress(&in, &out);
|
||||
if (ret < 0) {
|
||||
printf("ZSTD decompression failed\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (ret >= 0) {
|
||||
image_len = ret;
|
||||
ret = 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
#endif /* CONFIG_ZSTD */
|
||||
|
|
Loading…
Reference in a new issue