Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/69025 )
Change subject: util/eventlog: Correct the capitalization for diagnostics types ......................................................................
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 --- M util/cbfstool/eventlog.c 1 file changed, 21 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Yu-Ping Wu: Looks good to me, approved
diff --git a/util/cbfstool/eventlog.c b/util/cbfstool/eventlog.c index b42a7fd..9faf39b 100644 --- a/util/cbfstool/eventlog.c +++ b/util/cbfstool/eventlog.c @@ -444,7 +444,7 @@
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)"},