From: Julien Stephan Date: Thu, 9 Apr 2026 13:15:43 +0000 (+0200) Subject: boot/fit: fix misleading comment X-Git-Tag: v2026.07-rc1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86122451b5b987a41a149e385f09d8335348bebe;p=thirdparty%2Fu-boot.git boot/fit: fix misleading comment When load address is specified but set to 0, we ignore it and load in place instead. The current comment is misleading, so update it. Signed-off-by: Julien Stephan --- diff --git a/boot/image-fit.c b/boot/image-fit.c index 067ad236081..2d2709aa5b1 100644 --- a/boot/image-fit.c +++ b/boot/image-fit.c @@ -2282,7 +2282,7 @@ int fit_image_load(struct bootm_headers *images, ulong addr, printf(" Loading %s from 0x%08lx to 0x%08lx\n", prop_name, data, load); } else { - load = data; /* No load address specified */ + load = data; /* load address specified but set to 0 */ } comp = IH_COMP_NONE;