aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorSimon Glass2023-06-01 10:22:41 -0600
committerTom Rini2023-07-14 12:54:51 -0400
commitc8a4e293863348c27d0119cbbe425b91d500cec1 (patch)
tree62f69eb53fd457708543f5c122055d10dfe70c95 /drivers/core
parent9cf39bbe96753d1099e3626d0c5be1d6e11c7f42 (diff)
fdt: Clarify the fdt pre-relocation warning
Reword this so it is easier to understand. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/ofnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c
index 1d4ab5bb6f2..dee890b5527 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();
}
}