Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3571400 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: st1232 - switch to using SIMPLE_DEV_PM_OPS

parent e6293d2f
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -218,7 +218,7 @@ static int __devexit st1232_ts_remove(struct i2c_client *client)
	return 0;
}

#ifdef CONFIG_PM
#ifdef CONFIG_PM_SLEEP
static int st1232_ts_suspend(struct device *dev)
{
	struct i2c_client *client = to_i2c_client(dev);
@@ -243,12 +243,11 @@ static int st1232_ts_resume(struct device *dev)
	return 0;
}

static const struct dev_pm_ops st1232_ts_pm_ops = {
	.suspend	= st1232_ts_suspend,
	.resume		= st1232_ts_resume,
};
#endif

static SIMPLE_DEV_PM_OPS(st1232_ts_pm_ops,
			 st1232_ts_suspend, st1232_ts_resume);

static const struct i2c_device_id st1232_ts_id[] = {
	{ ST1232_TS_NAME, 0 },
	{ }
@@ -271,9 +270,7 @@ static struct i2c_driver st1232_ts_driver = {
		.name	= ST1232_TS_NAME,
		.owner	= THIS_MODULE,
		.of_match_table = of_match_ptr(st1232_ts_dt_ids),
#ifdef CONFIG_PM
		.pm	= &st1232_ts_pm_ops,
#endif
	},
};