diff options
Diffstat (limited to 'src/drivers/tpm/tpm.c')
-rw-r--r-- | src/drivers/tpm/tpm.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/drivers/tpm/tpm.c b/src/drivers/tpm/tpm.c index d3485bbec9..f9f9c4854c 100644 --- a/src/drivers/tpm/tpm.c +++ b/src/drivers/tpm/tpm.c @@ -1,23 +1,14 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include <acpi/acpi.h> #include <types.h> #include <bootstate.h> #include <security/tpm/tspi.h> -#if CONFIG(HAVE_ACPI_RESUME) -#include <acpi/acpi.h> -#endif - static void init_tpm_dev(void *unused) { -#if CONFIG(HAVE_ACPI_RESUME) int s3resume = acpi_is_wakeup_s3(); tpm_setup(s3resume); -#else - /* This can lead to PCR reset attacks but currently there - is no generic way to detect resume on other platforms. */ - tpm_setup(false); -#endif } BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, init_tpm_dev, NULL); |