From 5706a542e0be5cd661000c19f61f206ba3f44621 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Wed, 29 Sep 2021 14:30:05 +0200 Subject: [PATCH] soc/intel/common/block/sgx: Fix typo in log message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58038 Reviewed-by: Michael Niewöhner Reviewed-by: Felix Held Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/soc/intel/common/block/sgx/sgx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }