summaryrefslogtreecommitdiffstats
path: root/src/commonlib/include
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/commonlib/include
parentb2c2b92a6d6fe4bf21f22db54ef85972c795aaf3 (diff)
downloadcoreboot-5484a956b85f9e9b5271df0b5f705f38cb122305.tar.gz
coreboot-5484a956b85f9e9b5271df0b5f705f38cb122305.tar.bz2
coreboot-5484a956b85f9e9b5271df0b5f705f38cb122305.zip
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/commonlib/include')
-rw-r--r--src/commonlib/include/commonlib/cbmem_id.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commonlib/include/commonlib/cbmem_id.h b/src/commonlib/include/commonlib/cbmem_id.h
index a9cf7bdcf69b..5c905379fb84 100644
--- a/src/commonlib/include/commonlib/cbmem_id.h
+++ b/src/commonlib/include/commonlib/cbmem_id.h
@@ -7,7 +7,7 @@
#define CBMEM_ID_ACPI_BERT 0x42455254
#define CBMEM_ID_ACPI_CNVS 0x434e5653
#define CBMEM_ID_ACPI_GNVS 0x474e5653
-#define CMBMEM_ID_ACPI_HEST 0x48455354
+#define CBMEM_ID_ACPI_HEST 0x48455354
#define CBMEM_ID_ACPI_UCSI 0x55435349
#define CBMEM_ID_AFTER_CAR 0xc4787a93
#define CBMEM_ID_AGESA_RUNTIME 0x41474553
@@ -85,7 +85,7 @@
{ CBMEM_ID_ACPI_BERT, "ACPI BERT " }, \
{ CBMEM_ID_ACPI_CNVS, "CHROMEOS NVS" }, \
{ CBMEM_ID_ACPI_GNVS, "ACPI GNVS " }, \
- { CMBMEM_ID_ACPI_HEST, "ACPI HEST " }, \
+ { CBMEM_ID_ACPI_HEST, "ACPI HEST " }, \
{ CBMEM_ID_ACPI_UCSI, "ACPI UCSI " }, \
{ CBMEM_ID_AGESA_RUNTIME, "AGESA RSVD " }, \
{ CBMEM_ID_AFTER_CAR, "AFTER CAR " }, \