Commit 717ba04a authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Dmitry Torokhov

input: ektf2127 - switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr()

SIMPLE_DEV_PM_OPS() is deprecated as it requires explicit protection
against unused function warnings.  The new combination of pm_sleep_ptr()
and DEFINE_SIMPLE_DEV_PM_OPS() allows the compiler to see the functions,
thus suppressing the warning, but still allowing the unused code to be
removed. Thus also drop the __maybe_unused markings.
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Cc: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20230102181842.718010-45-jic23@kernel.orgSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent d67c047e
...@@ -177,7 +177,7 @@ static void ektf2127_stop(struct input_dev *dev) ...@@ -177,7 +177,7 @@ static void ektf2127_stop(struct input_dev *dev)
gpiod_set_value_cansleep(ts->power_gpios, 0); gpiod_set_value_cansleep(ts->power_gpios, 0);
} }
static int __maybe_unused ektf2127_suspend(struct device *dev) static int ektf2127_suspend(struct device *dev)
{ {
struct ektf2127_ts *ts = i2c_get_clientdata(to_i2c_client(dev)); struct ektf2127_ts *ts = i2c_get_clientdata(to_i2c_client(dev));
...@@ -189,7 +189,7 @@ static int __maybe_unused ektf2127_suspend(struct device *dev) ...@@ -189,7 +189,7 @@ static int __maybe_unused ektf2127_suspend(struct device *dev)
return 0; return 0;
} }
static int __maybe_unused ektf2127_resume(struct device *dev) static int ektf2127_resume(struct device *dev)
{ {
struct ektf2127_ts *ts = i2c_get_clientdata(to_i2c_client(dev)); struct ektf2127_ts *ts = i2c_get_clientdata(to_i2c_client(dev));
...@@ -201,8 +201,8 @@ static int __maybe_unused ektf2127_resume(struct device *dev) ...@@ -201,8 +201,8 @@ static int __maybe_unused ektf2127_resume(struct device *dev)
return 0; return 0;
} }
static SIMPLE_DEV_PM_OPS(ektf2127_pm_ops, ektf2127_suspend, static DEFINE_SIMPLE_DEV_PM_OPS(ektf2127_pm_ops, ektf2127_suspend,
ektf2127_resume); ektf2127_resume);
static int ektf2127_query_dimension(struct i2c_client *client, bool width) static int ektf2127_query_dimension(struct i2c_client *client, bool width)
{ {
...@@ -348,7 +348,7 @@ MODULE_DEVICE_TABLE(i2c, ektf2127_i2c_id); ...@@ -348,7 +348,7 @@ MODULE_DEVICE_TABLE(i2c, ektf2127_i2c_id);
static struct i2c_driver ektf2127_driver = { static struct i2c_driver ektf2127_driver = {
.driver = { .driver = {
.name = "elan_ektf2127", .name = "elan_ektf2127",
.pm = &ektf2127_pm_ops, .pm = pm_sleep_ptr(&ektf2127_pm_ops),
.of_match_table = of_match_ptr(ektf2127_of_match), .of_match_table = of_match_ptr(ektf2127_of_match),
}, },
.probe_new = ektf2127_probe, .probe_new = ektf2127_probe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment