summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2023-10-12 14:25:10 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2023-10-25 10:02:40 +0000
commit95424a2b972415a75c080f0f356dcddd49261904 (patch)
tree8c78aea5c934e9c763e0884ec56f76eaf5fb51a4
parent0b8dcba50cfc425d40500fa55439f679b5f10844 (diff)
downloadflashrom-95424a2b972415a75c080f0f356dcddd49261904.tar.gz
flashrom-95424a2b972415a75c080f0f356dcddd49261904.tar.bz2
flashrom-95424a2b972415a75c080f0f356dcddd49261904.zip
ich_descriptors: Fix table printing
The code uses "%-4s" to print the master names and thus assumes that all names have 4 characters or less. Convert "unknown" to "DevE", short for Device Expansion in order to properly display the table. Test: Run flashrom -p internal -VV Change-Id: I0d10e2771c7a27c1a73ed53a33e68a04eb9e1e00 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/78301 Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--ich_descriptors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ich_descriptors.c b/ich_descriptors.c
index 4b440ed7b..c3d062e12 100644
--- a/ich_descriptors.c
+++ b/ich_descriptors.c
@@ -491,7 +491,7 @@ void prettyprint_ich_descriptor_master(const enum ich_chipset cs, const struct i
cs == CHIPSET_600_SERIES_ALDER_POINT ||
cs == CHIPSET_JASPER_LAKE || cs == CHIPSET_METEOR_LAKE) {
const char *const master_names[] = {
- "BIOS", "ME", "GbE", "unknown", "EC",
+ "BIOS", "ME", "GbE", "DevE", "EC",
};
if (nm > (ssize_t)ARRAY_SIZE(master_names)) {