diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-09-29 14:30:05 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-30 13:46:02 +0000 |
commit | 5706a542e0be5cd661000c19f61f206ba3f44621 (patch) | |
tree | 0fd2ac564234ed5db5f22160d3ba678c4e7cebbe /src/soc/intel/common/block | |
parent | f3c42825f3d984ff6246789167a527ad51b6d094 (diff) |
soc/intel/common/block/sgx: Fix typo in log message
The value printed is the EPC (Enclave Page Cache) status, but the printk
statement refers to it as `ECP status` instead. Fix the typo.
Change-Id: Iba0a6013f2c537072dd7aa8266f2be3c5b0963ed
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58038
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block')
-rw-r--r-- | src/soc/intel/common/block/sgx/sgx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/sgx/sgx.c b/src/soc/intel/common/block/sgx/sgx.c index b21e665ac8..e0dcd85861 100644 --- a/src/soc/intel/common/block/sgx/sgx.c +++ b/src/soc/intel/common/block/sgx/sgx.c @@ -260,6 +260,6 @@ void sgx_fill_gnvs(struct global_nvs *gnvs) } printk(BIOS_DEBUG, - "SGX: gnvs ECP status = %d base = 0x%llx len = 0x%llx\n", + "SGX: gnvs EPC status = %d base = 0x%llx len = 0x%llx\n", gnvs->epcs, gnvs->emna, gnvs->elng); } |