From 1554a779c3aace69c1d50a4d3c0f9ef7998ab018 Mon Sep 17 00:00:00 2001 From: Javier Almansa Sobrino Date: Wed, 19 Aug 2020 10:13:37 +0100 Subject: [PATCH] core: Fix the entry on the match table for TPM support. TF-A Measured Boot driver expects a tpm_event_log node on the DTB with the compatible field set to "arm,tpm_event_log", so fix the match table entry for the TPM support to match the one used by TF-A. Signed-off-by: Javier Almansa Sobrino Acked-by: Jerome Forissier --- core/kernel/tpm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/kernel/tpm.c b/core/kernel/tpm.c index c0312805953..3e622b6dafd 100644 --- a/core/kernel/tpm.c +++ b/core/kernel/tpm.c @@ -70,7 +70,7 @@ static void get_tpm_phys_params(void *fdt __maybe_unused, #ifdef CFG_DT int node = 0; const char *dt_tpm_match_table = { - "arm,nt_fw", + "arm,tpm_event_log", }; if (!fdt) {