boot: Drop hex prefix from the booti image-moving message

This message includes the 0x prefix which is not used elsewhere. Drop it
for consistency.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-09-22 06:48:40 -06:00
parent 0df6320119
commit 7f9e630a9e
2 changed files with 2 additions and 2 deletions

View File

@@ -848,7 +848,7 @@ static int bootm_load_os(struct bootm_info *bmi, int boot_progress)
/* Handle BOOTM_STATE_LOADOS */
if (relocated_addr != load) {
printf("Moving Image from 0x%lx to 0x%lx, end=0x%lx\n",
printf("Moving Image from %lx to %lx, end %lx\n",
load, relocated_addr,
relocated_addr + image_size);
memmove((void *)relocated_addr, load_buf, image_size);

View File

@@ -78,7 +78,7 @@ static int booti_start(struct bootm_info *bmi)
/* Handle BOOTM_STATE_LOADOS */
if (relocated_addr != ld) {
printf("Moving Image from 0x%lx to 0x%lx, end=0x%lx\n", ld,
printf("Moving Image from %lx to %lx, end %lx\n", ld,
relocated_addr, relocated_addr + image_size);
memmove((void *)relocated_addr, (void *)ld, image_size);
}