|
@@ -80,7 +80,7 @@ enum tis_defaults {
|
|
|
static LIST_HEAD(tis_chips);
|
|
|
static DEFINE_SPINLOCK(tis_lock);
|
|
|
|
|
|
-#ifdef CONFIG_PNP
|
|
|
+#if defined(CONFIG_PNP) && defined(CONFIG_ACPI)
|
|
|
static int is_itpm(struct pnp_dev *dev)
|
|
|
{
|
|
|
struct acpi_device *acpi = pnp_acpi_device(dev);
|
|
@@ -93,6 +93,11 @@ static int is_itpm(struct pnp_dev *dev)
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
+#else
|
|
|
+static inline int is_itpm(struct pnp_dev *dev)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
static int check_locality(struct tpm_chip *chip, int l)
|