Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/73254 )
Change subject: device/dram/spd.c: Add Nanya's Manufacturer ID ......................................................................
device/dram/spd.c: Add Nanya's Manufacturer ID
There is a Nanya device used on one of the Google Guybrush devices, so add it to the list of SPD manufacturer names.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Ia449f4d14385cdd5a2548e2a05e3928ea3602c12 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73254 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@amd.corp-partner.google.com Reviewed-by: Elyes Haouas ehaouas@noos.fr Reviewed-by: Paul Menzel paulepanter@mailbox.org --- M src/device/dram/spd.c 1 file changed, 20 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Elyes Haouas: Looks good to me, approved Matt DeVillier: Looks good to me, approved
diff --git a/src/device/dram/spd.c b/src/device/dram/spd.c index cfaf86f..564a4ea 100644 --- a/src/device/dram/spd.c +++ b/src/device/dram/spd.c @@ -38,6 +38,8 @@ case 0x2c80: case 0x2c00: return "Micron"; + case 0x0b03: + return "Nanya"; default: return NULL; }