emulation/qemu-i440fx: Use SMBIOS macros

Change-Id: Idda4d74f9b934ccefe6ea5b553bde587059cde64
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/18790
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins)
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
This commit is contained in:
Paul Menzel 2017-03-12 18:18:06 +01:00 committed by Martin Roth
parent b980d1ae80
commit b4d0757855
1 changed files with 3 additions and 3 deletions

View File

@ -177,9 +177,9 @@ static int qemu_get_smbios_data16(int handle, unsigned long *current)
t->type = SMBIOS_PHYS_MEMORY_ARRAY; t->type = SMBIOS_PHYS_MEMORY_ARRAY;
t->handle = handle; t->handle = handle;
t->length = len - 2; t->length = len - 2;
t->location = 3; /* Location: System Board */ t->location = MEMORY_ARRAY_LOCATION_SYSTEM_BOARD;
t->use = 3; /* System memory */ t->use = MEMORY_ARRAY_USE_SYSTEM;
t->memory_error_correction = 3; /* No error correction */ t->memory_error_correction = MEMORY_ARRAY_ECC_NONE;
t->maximum_capacity = qemu_get_memory_size(); t->maximum_capacity = qemu_get_memory_size();
*current += len; *current += len;
return len; return len;