From cfbcba5db87e9d461d9ba5c5d3fb6a7754c73694 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 28 Jul 2015 09:22:59 -0500 Subject: arch/x86/smbios: Add Crucial DIMM manufacturer ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I975142351c0c033f9dc44670dcf819d296896921 Signed-off-by: Timothy Pearson Reviewed-on: http://review.coreboot.org/11934 Reviewed-by: Kyösti Mälkki Tested-by: build bot (Jenkins) --- src/arch/x86/smbios.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch') diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 74288f9110..6d645a33ee 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -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"); -- cgit v1.2.3