From 5484a956b85f9e9b5271df0b5f705f38cb122305 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Wed, 24 Nov 2021 11:34:40 +0100 Subject: commonlib/cbmem_id.h: Fix typo in macro name Rename `CMBMEM_ID_ACPI_HEST` to `CBMEM_ID_ACPI_HEST`. Change-Id: I3e680244c9573f566b51298462c324e062ab4657 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/59616 Reviewed-by: Felix Singer Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- src/soc/intel/xeon_sp/ras/hest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/intel/xeon_sp') diff --git a/src/soc/intel/xeon_sp/ras/hest.c b/src/soc/intel/xeon_sp/ras/hest.c index 6164edfe19..02a9ab1b53 100644 --- a/src/soc/intel/xeon_sp/ras/hest.c +++ b/src/soc/intel/xeon_sp/ras/hest.c @@ -75,7 +75,7 @@ unsigned long hest_create(unsigned long current, struct acpi_rsdp *rsdp) acpi_hest_t *hest; /* Reserve memory for Enhanced error logging */ - void *mem = cbmem_add(CMBMEM_ID_ACPI_HEST, CONFIG_ERROR_LOG_BUFFER_SIZE); + void *mem = cbmem_add(CBMEM_ID_ACPI_HEST, CONFIG_ERROR_LOG_BUFFER_SIZE); if (!mem) { printk(BIOS_ERR, "Unable to allocate HEST memory\n"); return current; -- cgit v1.2.3