Commit a889ee12 authored by Douglas Anderson's avatar Douglas Anderson

HID: i2c-hid: Switch to SYSTEM_SLEEP_PM_OPS()

The SYSTEM_SLEEP_PM_OPS() allows us to get rid of '#ifdef
CONFIG_PM_SLEEP', as talked about in commit 1a3c7bb0 ("PM: core:
Add new *_PM_OPS macros, deprecate old ones").

This change is expected to have no functional effect.
Reviewed-by: default avatarMaxime Ripard <mripard@kernel.org>
Reviewed-by: default avatarBenjamin Tissoires <bentiss@kernel.org>
Acked-by: default avatarBenjamin Tissoires <bentiss@kernel.org>
Signed-off-by: default avatarDouglas Anderson <dianders@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230727101636.v4.5.Ib2a2865bd3c0b068432259dfc7d76cebcbb512be@changeid
parent fbf0ea2d
...@@ -1085,7 +1085,6 @@ void i2c_hid_core_shutdown(struct i2c_client *client) ...@@ -1085,7 +1085,6 @@ void i2c_hid_core_shutdown(struct i2c_client *client)
} }
EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown); EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown);
#ifdef CONFIG_PM_SLEEP
static int i2c_hid_core_suspend(struct device *dev) static int i2c_hid_core_suspend(struct device *dev)
{ {
struct i2c_client *client = to_i2c_client(dev); struct i2c_client *client = to_i2c_client(dev);
...@@ -1138,10 +1137,9 @@ static int i2c_hid_core_resume(struct device *dev) ...@@ -1138,10 +1137,9 @@ static int i2c_hid_core_resume(struct device *dev)
return hid_driver_reset_resume(hid); return hid_driver_reset_resume(hid);
} }
#endif
const struct dev_pm_ops i2c_hid_core_pm = { const struct dev_pm_ops i2c_hid_core_pm = {
SET_SYSTEM_SLEEP_PM_OPS(i2c_hid_core_suspend, i2c_hid_core_resume) SYSTEM_SLEEP_PM_OPS(i2c_hid_core_suspend, i2c_hid_core_resume)
}; };
EXPORT_SYMBOL_GPL(i2c_hid_core_pm); EXPORT_SYMBOL_GPL(i2c_hid_core_pm);
......
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