summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Stephan <[email protected]>2026-04-09 15:15:43 +0200
committerTom Rini <[email protected]>2026-04-21 15:56:43 -0600
commit86122451b5b987a41a149e385f09d8335348bebe (patch)
tree84aab71c0e3e431abf0bcc9ae6ecae368d840923
parentaac96c3e126f0088826a9ae609324606def2535a (diff)
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 <[email protected]>
-rw-r--r--boot/image-fit.c2
1 files changed, 1 insertions, 1 deletions
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;