aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-11-07 10:17:40 +0100
committerSimon Glass <sjg@chromium.org>2023-11-14 20:04:01 -0700
commit0d4d9f94c555577f78cddc372c307465fc92413e (patch)
tree469779cc9196adce361abe56c2ce27a6563e98ce
parentf6d76e68784591ee32c173a08535c4dff4a76a1e (diff)
downloadu-boot-0d4d9f94c555577f78cddc372c307465fc92413e.zip
u-boot-0d4d9f94c555577f78cddc372c307465fc92413e.tar.gz
u-boot-0d4d9f94c555577f78cddc372c307465fc92413e.tar.bz2
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 <sjg@chromium.org> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--common/bootstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bootstage.c b/common/bootstage.c
index a68d883..0e6d807 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");
}
}