summaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-24 11:34:40 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-11-25 11:13:28 +0000
commit5484a956b85f9e9b5271df0b5f705f38cb122305 (patch)
tree955de6d70100aae416a726b49080e823d2d2540c /src/soc/intel
parentb2c2b92a6d6fe4bf21f22db54ef85972c795aaf3 (diff)
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 <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59616 Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Patrick Georgi <patrick@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/xeon_sp/ras/hest.c2
1 files changed, 1 insertions, 1 deletions
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;