diff options
author | Jérémy Lefaure <jeremy.lefaure@lse.epita.fr> | 2017-03-17 02:51:33 +0100 |
---|---|---|
committer | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> | 2017-04-03 21:46:02 +0200 |
commit | 67c2f3d388efe1a47e201b906d80545eaab7da22 (patch) | |
tree | 7315187c91fbf2b3f1185176d038138cffb80ac0 /drivers/char/tpm/st33zp24 | |
parent | tpm: add sleep only for retry in i2c_nuvoton_write_status() (diff) | |
download | linux-67c2f3d388efe1a47e201b906d80545eaab7da22.tar.xz linux-67c2f3d388efe1a47e201b906d80545eaab7da22.zip |
tpm/tpm_crb: fix unused warnings on suspend/resume functions
When PM_SLEEP is disabled crb_pm_suspend and crb_pm_resume are not used by
SET_SYSTEM_SLEEP_PM_OPS even if PM is enabled:
drvers/char/tpm/tpm_crb.c:540:12: warning: ‘crb_pm_suspend’ defined but not
used [-Wunused-function]
static int crb_pm_suspend(struct device *dev)
^
drivers/char/tpm/tpm_crb.c:551:12: warning: ‘crb_pm_resume’ defined but not
used [-Wunused-function]
static int crb_pm_resume(struct device *dev)
^
The preprocessor condition should be on CONFIG_PM_SLEEP, not on CONFIG_PM.
However, this patch fixes this warning by using __maybe_unused on function
that are in the preprocessor condition.
Fixes: 848efcfb560c ("tpm/tpm_crb: enter the low power state upon device suspend")
Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Diffstat (limited to 'drivers/char/tpm/st33zp24')
0 files changed, 0 insertions, 0 deletions