aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/pc80/tpm/tpm.c
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/drivers/pc80/tpm/tpm.c
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/drivers/pc80/tpm/tpm.c')
-rw-r--r--src/drivers/pc80/tpm/tpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/pc80/tpm/tpm.c b/src/drivers/pc80/tpm/tpm.c
index 064cb994fb..fa46b476f5 100644
--- a/src/drivers/pc80/tpm/tpm.c
+++ b/src/drivers/pc80/tpm/tpm.c
@@ -37,7 +37,7 @@
/* coreboot wrapper for TPM driver (start) */
#define TPM_DEBUG(fmt, args...) \
- if (CONFIG_DEBUG_TPM) { \
+ if (IS_ENABLED(CONFIG_DEBUG_TPM)) { \
printk(BIOS_DEBUG, PREFIX); \
printk(BIOS_DEBUG, fmt , ##args); \
}