Skip to content

Commit

Permalink
max17042_battery: Use SIMPLE_DEV_PM_OPS
Browse files Browse the repository at this point in the history
Use the SIMPLE_DEV_PM_OPS macro to declare the driver's pm_ops.

Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
Signed-off-by: Anton Vorontsov <anton@enomsg.org>
  • Loading branch information
Manish Badarkhe authored and Anton Vorontsov committed Oct 25, 2013
1 parent 883c10a commit 3d23c7f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions drivers/power/max17042_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ static int max17042_remove(struct i2c_client *client)
return 0;
}

#ifdef CONFIG_PM
#ifdef CONFIG_PM_SLEEP
static int max17042_suspend(struct device *dev)
{
struct max17042_chip *chip = dev_get_drvdata(dev);
Expand Down Expand Up @@ -816,17 +816,11 @@ static int max17042_resume(struct device *dev)

return 0;
}

static const struct dev_pm_ops max17042_pm_ops = {
.suspend = max17042_suspend,
.resume = max17042_resume,
};

#define MAX17042_PM_OPS (&max17042_pm_ops)
#else
#define MAX17042_PM_OPS NULL
#endif

static SIMPLE_DEV_PM_OPS(max17042_pm_ops, max17042_suspend,
max17042_resume);

#ifdef CONFIG_OF
static const struct of_device_id max17042_dt_match[] = {
{ .compatible = "maxim,max17042" },
Expand All @@ -849,7 +843,7 @@ static struct i2c_driver max17042_i2c_driver = {
.driver = {
.name = "max17042",
.of_match_table = of_match_ptr(max17042_dt_match),
.pm = MAX17042_PM_OPS,
.pm = &max17042_pm_ops,
},
.probe = max17042_probe,
.remove = max17042_remove,
Expand Down

0 comments on commit 3d23c7f

Please sign in to comment.