Commit 7e72fe73 authored by Kent Yoder's avatar Kent Yoder

tpm: compile out unused code in the PNP and PM cases

The tpm_tis driver doesn't use tpm_tis_resume except when PM is
configured and doesn't make use of tpm_tis_reenable_interrupts except
when PM or PNP is configured.
Signed-off-by: default avatarKent Yoder <key@linux.vnet.ibm.com>
parent dd7da132
...@@ -705,6 +705,7 @@ static int tpm_tis_init(struct device *dev, resource_size_t start, ...@@ -705,6 +705,7 @@ static int tpm_tis_init(struct device *dev, resource_size_t start,
return rc; return rc;
} }
#if defined(CONFIG_PNP) || defined(CONFIG_PM_SLEEP)
static void tpm_tis_reenable_interrupts(struct tpm_chip *chip) static void tpm_tis_reenable_interrupts(struct tpm_chip *chip)
{ {
u32 intmask; u32 intmask;
...@@ -725,7 +726,7 @@ static void tpm_tis_reenable_interrupts(struct tpm_chip *chip) ...@@ -725,7 +726,7 @@ static void tpm_tis_reenable_interrupts(struct tpm_chip *chip)
iowrite32(intmask, iowrite32(intmask,
chip->vendor.iobase + TPM_INT_ENABLE(chip->vendor.locality)); chip->vendor.iobase + TPM_INT_ENABLE(chip->vendor.locality));
} }
#endif
#ifdef CONFIG_PNP #ifdef CONFIG_PNP
static int __devinit tpm_tis_pnp_init(struct pnp_dev *pnp_dev, static int __devinit tpm_tis_pnp_init(struct pnp_dev *pnp_dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment