summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2017-01-14 19:23:34 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2017-11-30 17:22:39 +0000
commit59bd6a4d60c8bc5e8cbc0c23607f127e413ee17a (patch)
tree54f8cb654d3f5c579a8924b893c3f81ab7b79b56
parent242ea84b017b7f2812a4a1ba4b4996e5f1bb35ab (diff)
downloadcoreboot-59bd6a4d60c8bc5e8cbc0c23607f127e413ee17a.tar.gz
coreboot-59bd6a4d60c8bc5e8cbc0c23607f127e413ee17a.tar.bz2
coreboot-59bd6a4d60c8bc5e8cbc0c23607f127e413ee17a.zip
acpi/tpm: update TPM preprocessor guards
Replace '#ifdef ENABLE_TPM' with '#if IS_ENABLED(CONFIG_LPC_TPM)' for platforms which use a TPM on the LPC bus, so that the TPM ACPI code isn't included when the Kconfig option is deselected. Change-Id: Ia4c0d67dd3b044fe468002dff9eeb4f75f9934f9 Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/22581 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
-rw-r--r--src/soc/intel/baytrail/acpi/lpc.asl2
-rw-r--r--src/soc/intel/braswell/acpi/lpc.asl2
-rw-r--r--src/soc/intel/fsp_baytrail/acpi/lpc.asl2
-rw-r--r--src/southbridge/intel/i82801gx/acpi/lpc.asl2
-rw-r--r--src/southbridge/intel/lynxpoint/acpi/lpc.asl2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/baytrail/acpi/lpc.asl b/src/soc/intel/baytrail/acpi/lpc.asl
index 9512032b2745..23048f29073a 100644
--- a/src/soc/intel/baytrail/acpi/lpc.asl
+++ b/src/soc/intel/baytrail/acpi/lpc.asl
@@ -136,7 +136,7 @@ Device (LPCB)
// Include mainboard's superio.asl file.
#include "acpi/superio.asl"
-#ifdef ENABLE_TPM
+#if IS_ENABLED(CONFIG_LPC_TPM)
Device (TPM) // Trusted Platform Module
{
Name(_HID, EISAID("IFX0102"))
diff --git a/src/soc/intel/braswell/acpi/lpc.asl b/src/soc/intel/braswell/acpi/lpc.asl
index bf0ba4b6989c..e6b8cc939091 100644
--- a/src/soc/intel/braswell/acpi/lpc.asl
+++ b/src/soc/intel/braswell/acpi/lpc.asl
@@ -138,7 +138,7 @@ Device (LPCB)
/* Include mainboard's superio.asl file. */
#include "acpi/superio.asl"
-#ifdef ENABLE_TPM
+#if IS_ENABLED(CONFIG_LPC_TPM)
Device (TPM) /* Trusted Platform Module */
{
Name(_HID, EISAID("IFX0102"))
diff --git a/src/soc/intel/fsp_baytrail/acpi/lpc.asl b/src/soc/intel/fsp_baytrail/acpi/lpc.asl
index 9512032b2745..23048f29073a 100644
--- a/src/soc/intel/fsp_baytrail/acpi/lpc.asl
+++ b/src/soc/intel/fsp_baytrail/acpi/lpc.asl
@@ -136,7 +136,7 @@ Device (LPCB)
// Include mainboard's superio.asl file.
#include "acpi/superio.asl"
-#ifdef ENABLE_TPM
+#if IS_ENABLED(CONFIG_LPC_TPM)
Device (TPM) // Trusted Platform Module
{
Name(_HID, EISAID("IFX0102"))
diff --git a/src/southbridge/intel/i82801gx/acpi/lpc.asl b/src/southbridge/intel/i82801gx/acpi/lpc.asl
index 67cbc056e3db..f080b6af0988 100644
--- a/src/southbridge/intel/i82801gx/acpi/lpc.asl
+++ b/src/southbridge/intel/i82801gx/acpi/lpc.asl
@@ -199,7 +199,7 @@ Device (LPCB)
#include "acpi/superio.asl"
-#ifdef ENABLE_TPM
+#if IS_ENABLED(CONFIG_LPC_TPM)
Device (TPM) // Trusted Platform Module
{
Name(_HID, EISAID("IFX0102"))
diff --git a/src/southbridge/intel/lynxpoint/acpi/lpc.asl b/src/southbridge/intel/lynxpoint/acpi/lpc.asl
index aa839811eaea..3e13ac342cb3 100644
--- a/src/southbridge/intel/lynxpoint/acpi/lpc.asl
+++ b/src/southbridge/intel/lynxpoint/acpi/lpc.asl
@@ -224,7 +224,7 @@ Device (LPCB)
#include "acpi/superio.asl"
-#ifdef ENABLE_TPM
+#if IS_ENABLED(CONFIG_LPC_TPM)
Device (TPM) // Trusted Platform Module
{
Name(_HID, EISAID("IFX0102"))