diff options
author | Furquan Shaikh <furquan@chromium.org> | 2016-11-11 13:54:36 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-14 20:12:10 +0100 |
commit | b36cb079a50f1bdd1e3da8fd2c83f64c5a5a38be (patch) | |
tree | f7b16858af86a6078b7dc5d48365ae2da21e4a54 /src | |
parent | 289ee8f0e9d8e40ace5e95a858d4e0d09bcb357c (diff) |
commonlib: Add new cbmem id for EC_HOSTEVENT
BUG=chrome-os-partner:59352
BRANCH=None
TEST=Compiles successfully.
Change-Id: Ife167bff484ef552bd6cd2e61fdc8291ad6a8acf
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/17392
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/commonlib/include/commonlib/cbmem_id.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commonlib/include/commonlib/cbmem_id.h b/src/commonlib/include/commonlib/cbmem_id.h index 7d97bffe81..0d2a7c351c 100644 --- a/src/commonlib/include/commonlib/cbmem_id.h +++ b/src/commonlib/include/commonlib/cbmem_id.h @@ -66,6 +66,7 @@ #define CBMEM_ID_VBOOT_WORKBUF 0x78007343 #define CBMEM_ID_VPD 0x56504420 #define CBMEM_ID_WIFI_CALIBRATION 0x57494649 +#define CBMEM_ID_EC_HOSTEVENT 0x63ccbbc3 #define CBMEM_ID_TO_NAME_TABLE \ { CBMEM_ID_ACPI, "ACPI " }, \ @@ -112,5 +113,6 @@ { CBMEM_ID_VBOOT_SEL_REG, "VBOOT SEL " }, \ { CBMEM_ID_VBOOT_WORKBUF, "VBOOT WORK " }, \ { CBMEM_ID_VPD, "VPD " }, \ - { CBMEM_ID_WIFI_CALIBRATION, "WIFI CLBR " }, + { CBMEM_ID_WIFI_CALIBRATION, "WIFI CLBR " }, \ + { CBMEM_ID_EC_HOSTEVENT, "EC HOSTEVENT"}, #endif /* _CBMEM_ID_H_ */ |