mirror of https://gitee.com/openkylin/linux.git
hwmon: (tmp103) Use SIMPLE_DEV_PM_OPS helper macro
Replace ifdefs with SIMPLE_DEV_PM_OPS helper macro. Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Heiko Schocher <hs@denx.de> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
4abdf38d20
commit
39c382a310
|
@ -150,8 +150,7 @@ static int tmp103_probe(struct i2c_client *client,
|
||||||
return PTR_ERR_OR_ZERO(hwmon_dev);
|
return PTR_ERR_OR_ZERO(hwmon_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM
|
static int __maybe_unused tmp103_suspend(struct device *dev)
|
||||||
static int tmp103_suspend(struct device *dev)
|
|
||||||
{
|
{
|
||||||
struct regmap *regmap = dev_get_drvdata(dev);
|
struct regmap *regmap = dev_get_drvdata(dev);
|
||||||
|
|
||||||
|
@ -159,7 +158,7 @@ static int tmp103_suspend(struct device *dev)
|
||||||
TMP103_CONF_SD_MASK, 0);
|
TMP103_CONF_SD_MASK, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tmp103_resume(struct device *dev)
|
static int __maybe_unused tmp103_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct regmap *regmap = dev_get_drvdata(dev);
|
struct regmap *regmap = dev_get_drvdata(dev);
|
||||||
|
|
||||||
|
@ -167,15 +166,7 @@ static int tmp103_resume(struct device *dev)
|
||||||
TMP103_CONF_SD_MASK, TMP103_CONF_SD);
|
TMP103_CONF_SD_MASK, TMP103_CONF_SD);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct dev_pm_ops tmp103_dev_pm_ops = {
|
static SIMPLE_DEV_PM_OPS(tmp103_dev_pm_ops, tmp103_suspend, tmp103_resume);
|
||||||
.suspend = tmp103_suspend,
|
|
||||||
.resume = tmp103_resume,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define TMP103_DEV_PM_OPS (&tmp103_dev_pm_ops)
|
|
||||||
#else
|
|
||||||
#define TMP103_DEV_PM_OPS NULL
|
|
||||||
#endif /* CONFIG_PM */
|
|
||||||
|
|
||||||
static const struct i2c_device_id tmp103_id[] = {
|
static const struct i2c_device_id tmp103_id[] = {
|
||||||
{ "tmp103", 0 },
|
{ "tmp103", 0 },
|
||||||
|
@ -193,7 +184,7 @@ static struct i2c_driver tmp103_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "tmp103",
|
.name = "tmp103",
|
||||||
.of_match_table = of_match_ptr(tmp103_of_match),
|
.of_match_table = of_match_ptr(tmp103_of_match),
|
||||||
.pm = TMP103_DEV_PM_OPS,
|
.pm = &tmp103_dev_pm_ops,
|
||||||
},
|
},
|
||||||
.probe = tmp103_probe,
|
.probe = tmp103_probe,
|
||||||
.id_table = tmp103_id,
|
.id_table = tmp103_id,
|
||||||
|
|
Loading…
Reference in New Issue