From: Simon Glass Date: Tue, 7 Nov 2023 09:17:40 +0000 (+0100) Subject: bootstage: Correct exhasuted typo X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=0d4d9f94c555577f78cddc372c307465fc92413e;p=u-boot.git bootstage: Correct exhasuted typo Correct this typo in the warning message shown when no more bootstage records can be added. Signed-off-by: Simon Glass Signed-off-by: Patrick Delaunay Reviewed-by: Simon Glass --- diff --git a/common/bootstage.c b/common/bootstage.c index a68d883c68..0e6d80718f 100644 --- a/common/bootstage.c +++ b/common/bootstage.c @@ -137,7 +137,7 @@ ulong bootstage_add_record(enum bootstage_id id, const char *name, rec->flags = flags; rec->id = id; } else { - log_warning("Bootstage space exhasuted\n"); + log_warning("Bootstage space exhausted\n"); } }