From: Simon Glass Date: Thu, 1 Jun 2023 16:22:41 +0000 (-0600) Subject: fdt: Clarify the fdt pre-relocation warning X-Git-Tag: v2025.01-rc5-pxa1908~943^2~23 X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B?a=commitdiff_plain;h=c8a4e293863348c27d0119cbbe425b91d500cec1;p=u-boot.git fdt: Clarify the fdt pre-relocation warning Reword this so it is easier to understand. Signed-off-by: Simon Glass --- diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c index 1d4ab5bb6f..dee890b552 100644 --- a/drivers/core/ofnode.c +++ b/drivers/core/ofnode.c @@ -72,7 +72,7 @@ static oftree oftree_ensure(void *fdt) } } else { if (fdt != gd->fdt_blob) { - log_debug("Cannot only access control FDT before relocation\n"); + log_debug("Only the control FDT can be accessed before relocation\n"); return oftree_null(); } }