From 28114ae71bd94c5db17073e1e9a96173331055be Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Wed, 14 Nov 2018 17:51:00 +0100 Subject: SMBIOS: Remove duplicated smbios_memory_type enum Change-Id: I49554d13f1b6371b85a58cc1263608ad9e99130e Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/29638 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph Reviewed-by: Richard Spiegel --- src/mainboard/google/cyan/spd/spd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainboard/google/cyan/spd') diff --git a/src/mainboard/google/cyan/spd/spd.c b/src/mainboard/google/cyan/spd/spd.c index 7682677d69..b7b0c30c5d 100644 --- a/src/mainboard/google/cyan/spd/spd.c +++ b/src/mainboard/google/cyan/spd/spd.c @@ -138,9 +138,9 @@ static void set_dimm_info(uint8_t *spd, struct dimm_info *dimm) /* Parse the SPD data to determine the DIMM information */ if (IS_ENABLED(CONFIG_BOARD_GOOGLE_CYAN)) { - dimm->ddr_type = MEMORY_DEVICE_DDR3; + dimm->ddr_type = MEMORY_TYPE_DDR3; } else { - dimm->ddr_type = MEMORY_DEVICE_LPDDR3; + dimm->ddr_type = MEMORY_TYPE_LPDDR3; } dimm->dimm_size = capmb / 8 * busw / devw * ranks; /* MiB */ dimm->mod_type = spd[3] & 0xf; -- cgit v1.2.3