* [PATCH] bootm: add missing spaces in error messages
@ 2025-01-15 18:20 Ulrich Ölmann
2025-01-16 11:07 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ulrich Ölmann @ 2025-01-15 18:20 UTC (permalink / raw)
To: Barebox List
Signed-off-by: Ulrich Ölmann <u.oelmann@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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-16 11:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-15 18:20 [PATCH] bootm: add missing spaces in error messages Ulrich Ölmann
2025-01-16 11:07 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox