summaryrefslogtreecommitdiffstats
path: root/src/drivers/tpm
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-06-17 14:17:41 +0300
committerAngel Pons <th3fanbus@gmail.com>2020-06-18 12:56:01 +0000
commit3635c39237a776cff284118867212a084309d2b4 (patch)
tree620e28bdf78b895c533b3b8398104723c78a3a68 /src/drivers/tpm
parentc5853e95f2c7a1d70005e98d1d7653cdee7c9e76 (diff)
downloadcoreboot-3635c39237a776cff284118867212a084309d2b4.tar.gz
coreboot-3635c39237a776cff284118867212a084309d2b4.tar.bz2
coreboot-3635c39237a776cff284118867212a084309d2b4.zip
ACPI,drivers/: Do not guard <acpi/acpi.h>
Header was moved outside arch/. Change-Id: Id96c2bdcee49cddab6610c7e2cd6f07638279256 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42456 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/drivers/tpm')
-rw-r--r--src/drivers/tpm/tpm.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/drivers/tpm/tpm.c b/src/drivers/tpm/tpm.c
index d3485bbec988..f9f9c4854c4f 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);