From: Hugo Villeneuve <hvilleneuve@dimonoff.com>
Date: Thu, 26 Oct 2023 19:54:49 +0000 (-0400)
Subject: boot: Fix syntax in fdt_overlay_apply_verbose() error message
X-Git-Tag: v2025.01-rc5-pxa1908~774^2
X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=a3a884c697c3e016ff5625c56509a3d725a01bdb;p=u-boot.git

boot: Fix syntax in fdt_overlay_apply_verbose() error message

Remove superfluous "did".

Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
---

diff --git a/boot/fdt_support.c b/boot/fdt_support.c
index 5e49078f8c..b15d07765f 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");
 		}
 	}