diff options
author | Philipp Deppenwiese <zaolin@das-labor.org> | 2018-08-01 06:26:00 +0200 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2018-08-03 23:46:21 +0000 |
commit | bce49c2304adba31264c68daecdb5a41a3faf3a0 (patch) | |
tree | a96c10c75af096d56a7ae3a7aeeb316c81b8e3c8 /src/drivers/tpm | |
parent | 0a0340e42e461a6e34a2e99304792f0ecac07bcb (diff) |
security/tpm: Improve TCPA log generation
* Make tcpa_log_init static and move init code into
the tcpa_log_add_table_entry routine.
* Add more checks for log initialization.
* Fix minor issues
Change-Id: I215d79eed7ad17c6ab87f0c4b14a282e519ef07d
Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org>
Reviewed-on: https://review.coreboot.org/27769
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/tpm')
-rw-r--r-- | src/drivers/tpm/tpm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/drivers/tpm/tpm.c b/src/drivers/tpm/tpm.c index 8c681597bb..e4a81c3da4 100644 --- a/src/drivers/tpm/tpm.c +++ b/src/drivers/tpm/tpm.c @@ -30,9 +30,6 @@ static void init_tpm_dev(void *unused) #else tpm_setup(false); #endif - - // TCPA cbmem log - tcpa_log_init(); } BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, init_tpm_dev, NULL); |