[coreboot-gerrit] New patch to review for coreboot: arch/x86/smbios: Add Crucial DIMM manufacturer ID

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Fri Oct 16 21:45:13 CEST 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11934

-gerrit

commit a58bd64bf20dbd1e26d2bfcd5cbeeb4e2ee65e5a
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Tue Jul 28 09:22:59 2015 -0500

    arch/x86/smbios: Add Crucial DIMM manufacturer ID
    
    Change-Id: I975142351c0c033f9dc44670dcf819d296896921
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/arch/x86/smbios.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index 74288f9..6d645a3 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");



More information about the coreboot-gerrit mailing list