soc/amd/stoneyridge/memmap: fix bug in bert_reserved_region
Changing the local pointer "start" has no effect. Changing the value it points to has. Change-Id: I1b689896fcf255b795b27d7a7163849d6dfdb00e Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40506 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
4ec683d077
commit
1b457f8517
|
@ -32,7 +32,7 @@ void bert_reserved_region(void **start, size_t *size)
|
||||||
if (CONFIG(ACPI_BERT))
|
if (CONFIG(ACPI_BERT))
|
||||||
*start = cbmem_top();
|
*start = cbmem_top();
|
||||||
else
|
else
|
||||||
start = NULL;
|
*start = NULL;
|
||||||
*size = BERT_REGION_MAX_SIZE;
|
*size = BERT_REGION_MAX_SIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue