summaryrefslogtreecommitdiff
path: root/boot/image-fit.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-08-31 19:32:31 -0400
committerTom Rini <trini@konsulko.com>2022-08-31 19:32:31 -0400
commit4e10c1227aa879af809b3073bf917289f23e17d7 (patch)
tree682c915d732c07d017a00278ae76fdea6f00b003 /boot/image-fit.c
parent1573b6a86993fcf80d4badc866a46b78df7e6bda (diff)
parentf4b540e25c5c63fd55a80c78a22b2f69ecb848f8 (diff)
Merge branch '2022-08-31-assorted-fixes'
- Assorted bugfixes including re-working the i2c command CVE and fixing some TI reference platforms with different EEPROMs.
Diffstat (limited to 'boot/image-fit.c')
-rw-r--r--boot/image-fit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/boot/image-fit.c b/boot/image-fit.c
index df3e5df8836..21dbd051184 100644
--- a/boot/image-fit.c
+++ b/boot/image-fit.c
@@ -477,7 +477,7 @@ void fit_print_contents(const void *fit)
void fit_image_print(const void *fit, int image_noffset, const char *p)
{
char *desc;
- uint8_t type, arch, os, comp;
+ uint8_t type, arch, os, comp = IH_COMP_NONE;
size_t size;
ulong load, entry;
const void *data;
@@ -794,7 +794,6 @@ int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp)
data = fdt_getprop(fit, noffset, FIT_COMP_PROP, &len);
if (data == NULL) {
fit_get_debug(fit, noffset, FIT_COMP_PROP, len);
- *comp = -1;
return -1;
}