src/arch/x86/smbios: Add vendors
Add more manufacturer IDs for vendor: * GSkill * OCZ * Transcend Change-Id: Ic7df76b1310b2c1abea9c5d2d8fd688cb2a713b8 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/13863 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
77e45d3ecc
commit
2bdeb7f843
|
@ -131,6 +131,10 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Crucial");
|
"Crucial");
|
||||||
break;
|
break;
|
||||||
|
case 0x4f01:
|
||||||
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
|
"Transcend");
|
||||||
|
break;
|
||||||
case 0x9801:
|
case 0x9801:
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Kingston");
|
"Kingston");
|
||||||
|
@ -143,10 +147,18 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Corsair");
|
"Corsair");
|
||||||
break;
|
break;
|
||||||
|
case 0xb004:
|
||||||
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
|
"OCZ");
|
||||||
|
break;
|
||||||
case 0xad80:
|
case 0xad80:
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Hynix/Hyundai");
|
"Hynix/Hyundai");
|
||||||
break;
|
break;
|
||||||
|
case 0xcd04:
|
||||||
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
|
"GSkill");
|
||||||
|
break;
|
||||||
case 0xce80:
|
case 0xce80:
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Samsung");
|
"Samsung");
|
||||||
|
|
Loading…
Reference in New Issue