summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Lengfeld <contact@stefanchrist.eu>2017-05-15 19:14:19 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-05-17 08:51:36 +0200
commitb2174aba197c3892cff947321a54f32071c5940a (patch)
tree4e142dfd1b2bf55ce2420933d12477089a9f0452
parent861ae61534e20a8b4d569daa373cc93de9e4c7cf (diff)
downloadbarebox-b2174aba197c3892cff947321a54f32071c5940a.tar.gz
barebox-b2174aba197c3892cff947321a54f32071c5940a.tar.xz
imx-usb-loader: add prefix '0x' for hex value
Signed-off-by: Stefan Lengfeld <contact@stefanchrist.eu> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--scripts/imx/imx-usb-loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/imx/imx-usb-loader.c b/scripts/imx/imx-usb-loader.c
index 90ee3e09d5..1119e61754 100644
--- a/scripts/imx/imx-usb-loader.c
+++ b/scripts/imx/imx-usb-loader.c
@@ -1404,7 +1404,7 @@ static int do_irom_download(struct usb_work *curr, int verify)
}
}
- printf("loading binary file(%s) to %08x, skip=0x%x, fsize=%u type=%d...\n",
+ printf("loading binary file(%s) to 0x%08x, skip=0x%x, fsize=%u type=%d...\n",
curr->filename, dladdr, skip, fsize, type);
ret = load_file(image, fsize, dladdr, type);