summaryrefslogtreecommitdiffstats
path: root/common/bootm.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/bootm.c')
-rw-r--r--common/bootm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/bootm.c b/common/bootm.c
index 1199cb7ccc..79833e045d 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -246,7 +246,7 @@ done:
printf(", multifile image %s", data->initrd_part);
printf("\n");
done1:
- printf("initrd is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n",
+ printf("initrd is at %pa-%pa\n",
data->initrd_res->start,
data->initrd_res->end);
@@ -456,9 +456,9 @@ static int bootm_open_os_uimage(struct image_data *data)
static void bootm_print_info(struct image_data *data)
{
if (data->os_res)
- printf("OS image is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n",
- data->os_res->start,
- data->os_res->end);
+ printf("OS image is at %pa-%pa\n",
+ &data->os_res->start,
+ &data->os_res->end);
else
printf("OS image not yet relocated\n");
}