diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2015-07-08 22:35:21 +0200 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-07-10 08:14:16 +0200 |
commit | acf411d364d013dfc1b60878280ecc3b67bcb072 (patch) | |
tree | e5144c5b38d70a6dce5eb529375b6ad19a7e48ce | |
parent | 6757267d6bee3b85bec8344eaad74f02bbaca51e (diff) |
include/cbmem_id.h: Add name for `CBMEM_ID_TCPA_LOG`
Fix up commit f44ac13d (Add TCPA table.) by adding an entry for
`CBMEM_ID_TCPA_LOG` to the macro `CBMEM_ID_TO_NAME_TABLE`.
Currently, printing the CBMEM table of contents the name is missing.
$ sudo cbmem -l
CBMEM table of contents:
ID START LENGTH
[…]
6. 54435041 c7fa8ff8 00010000
[…]
Adding an entry and rebuilding the utility cbmem, the name `TCPA_LOG` is
shown.
$ sudo cbmem -l
CBMEM table of contents:
ID START LENGTH
[…]
6. TCPA LOG c7fa8ff8 00010000
[…]
Change-Id: I089ea714349e07b322330bc11f723cc031c61c56
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/10856
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | src/include/cbmem_id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/cbmem_id.h b/src/include/cbmem_id.h index 3588079a5e..6812c41cc1 100644 --- a/src/include/cbmem_id.h +++ b/src/include/cbmem_id.h @@ -105,6 +105,7 @@ { CBMEM_ID_SMBIOS, "SMBIOS " }, \ { CBMEM_ID_SMM_SAVE_SPACE, "SMM BACKUP " }, \ { CBMEM_ID_SPINTABLE, "SPIN TABLE " }, \ + { CBMEM_ID_TCPA_LOG, "TCPA LOG " }, \ { CBMEM_ID_TIMESTAMP, "TIME STAMP " }, \ { CBMEM_ID_VBOOT_HANDOFF, "VBOOT " }, \ { CBMEM_ID_VBOOT_WORKBUF, "VBOOT WORK " }, \ |