diff options
author | Martin Roth <gaumless@gmail.com> | 2023-02-23 16:55:09 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-27 16:40:25 +0000 |
commit | 2c6c353b5bf2db5e0a000b5544764e40fe219058 (patch) | |
tree | bf50fc828b4d1dffe7d9535445ef3fc7f80c446d /src/device | |
parent | 3a5d1953b00c0ac62c9e7397cff49ec88dd95581 (diff) |
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>
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/dram/spd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/device/dram/spd.c b/src/device/dram/spd.c index cfaf86f517..564a4ead92 100644 --- a/src/device/dram/spd.c +++ b/src/device/dram/spd.c @@ -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; } |