Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45569 )
Change subject: drivers/tpm/ppi_stub: Fix interface version ......................................................................
drivers/tpm/ppi_stub: Fix interface version
The latest version defined by Tcg is 1.3.
Change-Id: Idb12e2212d6d38c720c8fe989678724c871af6ef Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M src/drivers/tpm/ppi_stub.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/45569/1
diff --git a/src/drivers/tpm/ppi_stub.c b/src/drivers/tpm/ppi_stub.c index a4b8f57..a5d0252 100644 --- a/src/drivers/tpm/ppi_stub.c +++ b/src/drivers/tpm/ppi_stub.c @@ -20,7 +20,7 @@ { if (CONFIG(TPM2)) /* Interface version: 2.0 */ - acpigen_write_return_string("2.0"); + acpigen_write_return_string("1.3"); else /* Interface version: 1.2 */ acpigen_write_return_string("1.2");