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>
This commit is contained in:
Martin Roth 2023-02-23 16:55:09 -07:00 committed by Felix Held
parent 3a5d1953b0
commit 2c6c353b5b
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ const char *spd_manufacturer_name(const uint16_t mod_id)
case 0x2c80:
case 0x2c00:
return "Micron";
case 0x0b03:
return "Nanya";
default:
return NULL;
}