1
0
Fork 0

thermal: qoriq: Use __maybe_unused instead of #if CONFIG_PM_SLEEP

Use __maybe_unused for power management related functions
instead of #if CONFIG_PM_SLEEP to simply the code.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
alistair/sunxi64-5.4-dsi
Anson Huang 2019-07-30 10:21:25 +08:00 committed by Zhang Rui
parent 4d82000af0
commit aea591970f
1 changed files with 2 additions and 4 deletions

View File

@ -256,8 +256,7 @@ static int qoriq_tmu_remove(struct platform_device *pdev)
return 0;
}
#ifdef CONFIG_PM_SLEEP
static int qoriq_tmu_suspend(struct device *dev)
static int __maybe_unused qoriq_tmu_suspend(struct device *dev)
{
u32 tmr;
struct qoriq_tmu_data *data = dev_get_drvdata(dev);
@ -272,7 +271,7 @@ static int qoriq_tmu_suspend(struct device *dev)
return 0;
}
static int qoriq_tmu_resume(struct device *dev)
static int __maybe_unused qoriq_tmu_resume(struct device *dev)
{
u32 tmr;
int ret;
@ -289,7 +288,6 @@ static int qoriq_tmu_resume(struct device *dev)
return 0;
}
#endif
static SIMPLE_DEV_PM_OPS(qoriq_tmu_pm_ops,
qoriq_tmu_suspend, qoriq_tmu_resume);