arch/x86/smbios: Add Crucial DIMM manufacturer ID

Change-Id: I975142351c0c033f9dc44670dcf819d296896921
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/11934
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins)
This commit is contained in:
Timothy Pearson 2015-07-28 09:22:59 -05:00 committed by Peter Stuge
parent ace3525e75
commit cfbcba5db8
1 changed files with 4 additions and 0 deletions

View File

@ -124,6 +124,10 @@ static int smbios_processor_name(char *start)
void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 *t)
{
switch (mod_id) {
case 0x2c80:
t->manufacturer = smbios_add_string(t->eos,
"Crucial");
break;
case 0x9801:
t->manufacturer = smbios_add_string(t->eos,
"Kingston");