summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-09-29 14:30:05 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-30 13:46:02 +0000
commit5706a542e0be5cd661000c19f61f206ba3f44621 (patch)
tree0fd2ac564234ed5db5f22160d3ba678c4e7cebbe /src
parentf3c42825f3d984ff6246789167a527ad51b6d094 (diff)
downloadcoreboot-5706a542e0be5cd661000c19f61f206ba3f44621.tar.gz
coreboot-5706a542e0be5cd661000c19f61f206ba3f44621.tar.bz2
coreboot-5706a542e0be5cd661000c19f61f206ba3f44621.zip
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')
-rw-r--r--src/soc/intel/common/block/sgx/sgx.c2
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 b21e665ac80f..e0dcd8586102 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);
}