aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2016-02-20 17:32:03 +0100
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-02-26 07:01:21 +0100
commit0e92bb010f8bd45b2543f2553a4d3c2f35dffc09 (patch)
treef4cf3e8be983087518a1261f5a4c24b40de61da1 /src/cpu
parentbfe07899e372ac41c0a6dd4efac25458f5d48c9c (diff)
tree wide: Convert "if (CONFIG_.*_TPM.*)" to "if (IS_ENABLED(...))"
Change-Id: Ib73abb0ada7dfdfab3487c005719e19f51ef1812 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Reviewed-on: https://review.coreboot.org/13779 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/intel/haswell/romstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/haswell/romstage.c b/src/cpu/intel/haswell/romstage.c
index 6da7fd932e..9932a508e5 100644
--- a/src/cpu/intel/haswell/romstage.c
+++ b/src/cpu/intel/haswell/romstage.c
@@ -267,7 +267,7 @@ void romstage_common(const struct romstage_params *params)
printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
post_code(0x3f);
- if (CONFIG_LPC_TPM) {
+ if (IS_ENABLED(CONFIG_LPC_TPM)) {
init_tpm(wake_from_s3);
}
}