soc/amd/pi/amd_late_init.c: Fix implicit enum conversion

This fixes building with clang.

Change-Id: Ifda9be8996703b06fe9ee30ffb5f56a91629e065
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63053
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Arthur Heymans 2022-03-23 22:27:48 +01:00 committed by Felix Held
parent 99eab34b9e
commit 457785b820
1 changed files with 3 additions and 2 deletions

View File

@ -36,8 +36,9 @@ static void transfer_memory_info(TYPE17_DMI_INFO *dmi17,
dimm->rank_per_dimm = dmi17->Attributes;
dimm->mod_type = smbios_form_factor_to_spd_mod_type(dmi17->MemoryType,
dmi17->FormFactor);
dimm->mod_type = smbios_form_factor_to_spd_mod_type(
(smbios_memory_type)dmi17->MemoryType,
(smbios_memory_form_factor)dmi17->FormFactor);
dimm->bus_width = smbios_bus_width_to_spd_width(dmi17->MemoryType, dmi17->TotalWidth,
dmi17->DataWidth);