aboutsummaryrefslogtreecommitdiff
path: root/boot/fdt_support.c
diff options
context:
space:
mode:
authorHugo Villeneuve <hvilleneuve@dimonoff.com>2023-10-26 15:54:49 -0400
committerTom Rini <trini@konsulko.com>2023-11-10 11:01:50 -0500
commita3a884c697c3e016ff5625c56509a3d725a01bdb (patch)
treebc99055f5e9774ff7067b3db6540417105b9d364 /boot/fdt_support.c
parentaff5dddd42ae1998f40fc3b1d27858d3a1feafe0 (diff)
downloadu-boot-a3a884c697c3e016ff5625c56509a3d725a01bdb.zip
u-boot-a3a884c697c3e016ff5625c56509a3d725a01bdb.tar.gz
u-boot-a3a884c697c3e016ff5625c56509a3d725a01bdb.tar.bz2
boot: Fix syntax in fdt_overlay_apply_verbose() error message
Remove superfluous "did". Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
Diffstat (limited to 'boot/fdt_support.c')
-rw-r--r--boot/fdt_support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/fdt_support.c b/boot/fdt_support.c
index 5e49078..b15d077 100644
--- a/boot/fdt_support.c
+++ b/boot/fdt_support.c
@@ -2095,7 +2095,7 @@ int fdt_overlay_apply_verbose(void *fdt, void *fdto)
printf("failed on fdt_overlay_apply(): %s\n",
fdt_strerror(err));
if (!has_symbols) {
- printf("base fdt does did not have a /__symbols__ node\n");
+ printf("base fdt does not have a /__symbols__ node\n");
printf("make sure you've compiled with -@\n");
}
}