From 2c6c353b5bf2db5e0a000b5544764e40fe219058 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 23 Feb 2023 16:55:09 -0700 Subject: 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 Change-Id: Ia449f4d14385cdd5a2548e2a05e3928ea3602c12 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73254 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier Reviewed-by: Elyes Haouas Reviewed-by: Paul Menzel --- src/device/dram/spd.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/device/dram') 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; } -- cgit v1.2.3