lkml.org 
[lkml]   [2023]   [May]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4/9] HID: i2c-hid: Switch to SYSTEM_SLEEP_PM_OPS()
    Date
    The SYSTEM_SLEEP_PM_OPS() allows us to get rid of '#ifdef
    CONFIG_PM_SLEEP', as talked about in commit 1a3c7bb08826 ("PM: core:
    Add new *_PM_OPS macros, deprecate old ones").

    This change is expected to have no functional effect.

    Signed-off-by: Douglas Anderson <dianders@chromium.org>
    ---

    drivers/hid/i2c-hid/i2c-hid-core.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/hid/i2c-hid/i2c-hid-core.c b/drivers/hid/i2c-hid/i2c-hid-core.c
    index efbba0465eef..19d985c20a5c 100644
    --- a/drivers/hid/i2c-hid/i2c-hid-core.c
    +++ b/drivers/hid/i2c-hid/i2c-hid-core.c
    @@ -1085,7 +1085,6 @@ void i2c_hid_core_shutdown(struct i2c_client *client)
    }
    EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown);

    -#ifdef CONFIG_PM_SLEEP
    static int i2c_hid_core_suspend(struct device *dev)
    {
    struct i2c_client *client = to_i2c_client(dev);
    @@ -1138,10 +1137,9 @@ static int i2c_hid_core_resume(struct device *dev)

    return hid_driver_reset_resume(hid);
    }
    -#endif

    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);

    --
    2.40.1.698.g37aff9b760-goog
    \
     
     \ /
      Last update: 2023-05-23 21:32    [W:7.533 / U:0.052 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site