diff options
author | Christian Walter <christian.walter@9elements.com> | 2020-09-30 13:42:35 +0200 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2020-10-08 15:38:19 +0000 |
commit | 6e536bcca873bea81e630d87d20816bd909bff2d (patch) | |
tree | fbabf5d261b58ee8489de4e74159f7864660a831 /src/security | |
parent | 20be04a15376fb563222bad78632971e78621780 (diff) |
security/intel/txt: Print chipset as hex value
Print chipset as hex value in order to make it more readable.
Change-Id: Ifafbe0a1161e9fe6e790692002375f45d813b723
Signed-off-by: Christian Walter <christian.walter@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45867
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/intel/txt/logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/intel/txt/logging.c b/src/security/intel/txt/logging.c index cf14b55df9..f329cf975f 100644 --- a/src/security/intel/txt/logging.c +++ b/src/security/intel/txt/logging.c @@ -141,7 +141,7 @@ void txt_dump_acm_info(const struct acm_header_v0 *acm_header) printk(BIOS_INFO, " Header: v%u.%u\n", acm_header->header_version[0], acm_header->header_version[1]); - printk(BIOS_INFO, " Chipset: %u\n", acm_header->chipset_id); + printk(BIOS_INFO, " Chipset: %x\n", acm_header->chipset_id); printk(BIOS_INFO, " Size: %zu\n", acm_size); switch (acm_header->flags) { |