[PATCH] bootm: add missing spaces in error messages
Ulrich Ölmann
u.oelmann at pengutronix.de
Wed Jan 15 10:20:12 PST 2025
Signed-off-by: Ulrich Ölmann <u.oelmann at pengutronix.de>
---
common/bootm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/bootm.c b/common/bootm.c
index bc917081d7d1..2c7d3691407b 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -275,7 +275,7 @@ int bootm_load_initrd(struct image_data *data, unsigned long load_address)
initrd_size);
if (!data->initrd_res) {
pr_err("unable to request SDRAM region for initrd at"
- "0x%08llx-0x%08llx\n",
+ " 0x%08llx-0x%08llx\n",
(unsigned long long)load_address,
(unsigned long long)load_address + initrd_size - 1);
return -ENOMEM;
@@ -494,7 +494,7 @@ int bootm_load_devicetree(struct image_data *data, void *fdt,
fdt_size);
if (!data->oftree_res) {
pr_err("unable to request SDRAM region for device tree at"
- "0x%08llx-0x%08llx\n",
+ " 0x%08llx-0x%08llx\n",
(unsigned long long)load_address,
(unsigned long long)load_address + fdt_size - 1);
return -ENOMEM;
--
2.39.5
More information about the barebox
mailing list