From: Jaewon Kim Date: Fri, 12 Sep 2014 04:35:45 +0000 (+0900) Subject: mfd: intel_soc_pmic: Add CONFIG_PM_SLEEP check for suspend_fn/resume_fn X-Git-Tag: v3.18-rc1~40^2~25 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bdaf67030cbab21a91fd2d6b1771cf336a0dd092;p=karo-tx-linux.git mfd: intel_soc_pmic: Add CONFIG_PM_SLEEP check for suspend_fn/resume_fn This patch fix warning message with CONFIG_PM_SLEEP disabled If CONFIG_PM_SLEEP is not enabled we receive the following warning message: drivers/mfd/intel_soc_pmic_core.c:118:12: warning: 'intel_soc_pmic_suspend' defined but not used Signed-off-by: Jaewon Kim Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/intel_soc_pmic_core.c b/drivers/mfd/intel_soc_pmic_core.c index 2720922f90b4..df7b0642a5b4 100644 --- a/drivers/mfd/intel_soc_pmic_core.c +++ b/drivers/mfd/intel_soc_pmic_core.c @@ -115,6 +115,7 @@ static void intel_soc_pmic_shutdown(struct i2c_client *i2c) return; } +#if defined(CONFIG_PM_SLEEP) static int intel_soc_pmic_suspend(struct device *dev) { struct intel_soc_pmic *pmic = dev_get_drvdata(dev); @@ -132,6 +133,7 @@ static int intel_soc_pmic_resume(struct device *dev) return 0; } +#endif static SIMPLE_DEV_PM_OPS(intel_soc_pmic_pm_ops, intel_soc_pmic_suspend, intel_soc_pmic_resume);