Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/58038 )
Change subject: soc/intel/common/block/sgx: Fix typo in log message ......................................................................
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 --- M src/soc/intel/common/block/sgx/sgx.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Felix Held: Looks good to me, but someone else must approve Michael Niewöhner: Looks good to me, approved
diff --git a/src/soc/intel/common/block/sgx/sgx.c b/src/soc/intel/common/block/sgx/sgx.c index b21e665..e0dcd85 100644 --- a/src/soc/intel/common/block/sgx/sgx.c +++ b/src/soc/intel/common/block/sgx/sgx.c @@ -260,6 +260,6 @@ }
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); }