summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-07-19 12:08:22 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-26 21:12:54 +0000
commit416644085a5c7daf07a2fd5cd6c76f6d25c73acf (patch)
tree757bb30c5ff104f52b55be0b3039e0ac2b375f29 /src/arch
parent7d964aed3b3694a611fdb00f3b37d6ce91cb9cb0 (diff)
downloadcoreboot-416644085a5c7daf07a2fd5cd6c76f6d25c73acf.tar.xz
arch/x86/smbios.c: Use macro for 'type_detail'
Change-Id: I95c40acb2fb390c50c8d1af9dd44999f9d57c2d5 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43589 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/smbios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index 3c5799bca8..1c7f2ac4f2 100644
--- a/src/arch/x86/smbios.c
+++ b/src/arch/x86/smbios.c
@@ -360,7 +360,7 @@ static int create_smbios_type17_for_dimm(struct dimm_info *dimm,
t->maximum_voltage = dimm->vdd_voltage;
/* Synchronous = 1 */
- t->type_detail = 0x0080;
+ t->type_detail = MEMORY_TYPE_DETAIL_SYNCHRONOUS;
/* no handle for error information */
t->memory_error_information_handle = 0xFFFE;
t->attributes = dimm->rank_per_dimm;