summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorHsuan Ting Chen <roccochen@chromium.org>2022-10-31 17:41:32 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-11-02 21:41:10 +0000
commit5faaca09b8ea433a42a15408ec55074d7f9e143e (patch)
tree9aea0e2958d3bbbc8359e5981c9508c83d5046a6 /util
parent22683fabf031c1147d97c1393ec35f212482fecb (diff)
downloadcoreboot-5faaca09b8ea433a42a15408ec55074d7f9e143e.tar.gz
coreboot-5faaca09b8ea433a42a15408ec55074d7f9e143e.tar.bz2
coreboot-5faaca09b8ea433a42a15408ec55074d7f9e143e.zip
util/eventlog: Correct the capitalization for diagnostics types
Correct the capitalization of ELOG_CROS_DIAG_TYPE_STORAGE_HEALTH from "Storage Health Info" to "Storage health info", which is already widely used in depthcharge diagnostics tools. BUG=b:254405481 TEST=none Change-Id: Ia6c1df9e8d2ee6f8ae11b962e76b52f3c6663c42 Signed-off-by: Hsuan Ting Chen <roccochen@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69025 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/eventlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/eventlog.c b/util/cbfstool/eventlog.c
index b42a7fdfc411..9faf39b10d4a 100644
--- a/util/cbfstool/eventlog.c
+++ b/util/cbfstool/eventlog.c
@@ -444,7 +444,7 @@ static int eventlog_print_data(const struct event_header *event)
static const struct valstr cros_diagnostics_diag_types[] = {
{ELOG_CROS_DIAG_TYPE_NONE, "None"},
- {ELOG_CROS_DIAG_TYPE_STORAGE_HEALTH, "Storage Health Info"},
+ {ELOG_CROS_DIAG_TYPE_STORAGE_HEALTH, "Storage health info"},
{ELOG_CROS_DIAG_TYPE_STORAGE_TEST_SHORT, "Storage self-test (short)"},
{ELOG_CROS_DIAG_TYPE_STORAGE_TEST_EXTENDED, "Storage self-test (extended)"},
{ELOG_CROS_DIAG_TYPE_MEMORY_QUICK, "Memory check (quick)"},