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>
This commit is contained in:
parent
f3c42825f3
commit
5706a542e0
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue