From: Jarkko Sakkinen Date: Mon, 22 Feb 2016 14:09:12 +0000 (+0200) Subject: tpm_tis: fix build warning with tpm_tis_resume X-Git-Tag: v4.6-rc1~127^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2cb6d6460f1a171c71c134e0efe3a94c2206d080;p=thirdparty%2Flinux.git tpm_tis: fix build warning with tpm_tis_resume drivers/char/tpm/tpm_tis.c:838: warning: ‘tpm_tis_resume’ defined but not used Reported-by: James Morris Fixes: 00194826e6be ("tpm_tis: Clean up the force=1 module parameter") Signed-off-by: Jarkko Sakkinen cc: stable@vger.kernel.org --- diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index 2b2eff9e769e4..a507006728e09 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c @@ -814,6 +814,7 @@ out_err: return rc; } +#ifdef CONFIG_PM_SLEEP static void tpm_tis_reenable_interrupts(struct tpm_chip *chip) { u32 intmask; @@ -855,6 +856,7 @@ static int tpm_tis_resume(struct device *dev) return 0; } +#endif static SIMPLE_DEV_PM_OPS(tpm_tis_pm, tpm_pm_suspend, tpm_tis_resume);