1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

ich_descriptors: Drop line numbering comments

Change-Id: Ia895e35edfc86b6955395c4570d67477da70e2c7
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/33256
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Nico Huber 2019-06-06 15:43:27 +02:00
parent 32b9f5c665
commit 129e938e4c

View File

@ -214,23 +214,23 @@ static const char *pprint_density(enum ich_chipset cs, const struct ich_descript
static const char *pprint_freq(enum ich_chipset cs, uint8_t value) static const char *pprint_freq(enum ich_chipset cs, uint8_t value)
{ {
static const char *const freq_str[2][8] = { { static const char *const freq_str[2][8] = { {
"20 MHz", /* 000 */ "20 MHz",
"33 MHz", /* 001 */ "33 MHz",
"reserved", /* 010 */ "reserved",
"reserved", /* 011 */ "reserved",
"50 MHz", /* 100 */ /* New since Ibex Peak */ "50 MHz", /* New since Ibex Peak */
"reserved", /* 101 */ "reserved",
"reserved", /* 110 */ "reserved",
"reserved" /* 111 */ "reserved"
}, { }, {
"reserved", /* 000 */ "reserved",
"reserved", /* 001 */ "reserved",
"48 MHz", /* 010 */ "48 MHz",
"reserved", /* 011 */ "reserved",
"30 MHz", /* 100 */ "30 MHz",
"reserved", /* 101 */ "reserved",
"17 MHz", /* 110 */ "17 MHz",
"reserved" /* 111 */ "reserved"
} }; } };
switch (cs) { switch (cs) {