[PATCH] x86/intel_mid_thermal: Fix suspend handlers unused warning

From: Borislav Petkov
Date: Sat Nov 26 2016 - 11:02:13 EST


From: Borislav Petkov <bp@xxxxxxx>

Fix:

drivers/platform/x86/intel_mid_thermal.c:424:12: warning: âmid_thermal_resumeâ
defined but not used [-Wunused-function]
static int mid_thermal_resume(struct device *dev)
^
drivers/platform/x86/intel_mid_thermal.c:436:12: warning: âmid_thermal_suspendâ
defined but not used [-Wunused-function]
static int mid_thermal_suspend(struct device *dev)
^

which I see during randbuilds here.

Signed-off-by: Borislav Petkov <bp@xxxxxxx>
Cc: Darren Hart <dvhart@xxxxxxxxxxxxx>
Cc: platform-driver-x86@xxxxxxxxxxxxxxx
---
drivers/platform/x86/intel_mid_thermal.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/platform/x86/intel_mid_thermal.c b/drivers/platform/x86/intel_mid_thermal.c
index 9f713b832ba3..0df3c9d37509 100644
--- a/drivers/platform/x86/intel_mid_thermal.c
+++ b/drivers/platform/x86/intel_mid_thermal.c
@@ -415,6 +415,7 @@ static struct thermal_device_info *initialize_sensor(int index)
return td_info;
}

+#ifdef CONFIG_PM_SLEEP
/**
* mid_thermal_resume - resume routine
* @dev: device structure
@@ -442,6 +443,7 @@ static int mid_thermal_suspend(struct device *dev)
*/
return configure_adc(0);
}
+#endif

static SIMPLE_DEV_PM_OPS(mid_thermal_pm,
mid_thermal_suspend, mid_thermal_resume);
--
2.10.0