diff options
author | Simon Glass <sjg@chromium.org> | 2023-11-07 10:17:40 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-11-14 20:04:01 -0700 |
commit | 0d4d9f94c555577f78cddc372c307465fc92413e (patch) | |
tree | 469779cc9196adce361abe56c2ce27a6563e98ce /common/bootstage.c | |
parent | f6d76e68784591ee32c173a08535c4dff4a76a1e (diff) |
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>
Diffstat (limited to 'common/bootstage.c')
-rw-r--r-- | common/bootstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bootstage.c b/common/bootstage.c index a68d883c684..0e6d80718fd 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"); } } |