diff options
author | 2024-03-11 15:21:00 +0100 | |
---|---|---|
committer | 2024-03-11 15:21:00 +0100 | |
commit | 7874b581c78bbf77006df9f264e6141f182f74fc (patch) | |
tree | 162fb7986bcc9416fc9f4a6a65188c943d781414 /drivers/media/i2c/ccs/ccs-core.c | |
parent | Merge branch 'pm-sleep' (diff) | |
parent | Documentation: PM: Fix runtime_pm.rst markdown syntax (diff) | |
download | wireguard-linux-7874b581c78bbf77006df9f264e6141f182f74fc.tar.xz wireguard-linux-7874b581c78bbf77006df9f264e6141f182f74fc.zip |
Merge branch 'pm-runtime'
Merge changes related to the runtime power management of devices for
6.9-rc1:
- Simplify pm_runtime_get_if_active() usage and add a replacement for
pm_runtime_put_autosuspend() (Sakari Ailus).
- Add a tracepoint for runtime_status changes tracking (Vilas Bhat).
- Fix section title markdown in the runtime PM documentation (Yiwei
Lin).
* pm-runtime:
Documentation: PM: Fix runtime_pm.rst markdown syntax
PM: runtime: add tracepoint for runtime_status changes
PM: runtime: Add pm_runtime_put_autosuspend() replacement
PM: runtime: Simplify pm_runtime_get_if_active() usage
Diffstat (limited to 'drivers/media/i2c/ccs/ccs-core.c')
-rw-r--r-- | drivers/media/i2c/ccs/ccs-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c index e21287d50c15..e1ae0f9fad43 100644 --- a/drivers/media/i2c/ccs/ccs-core.c +++ b/drivers/media/i2c/ccs/ccs-core.c @@ -674,7 +674,7 @@ static int ccs_set_ctrl(struct v4l2_ctrl *ctrl) break; } - pm_status = pm_runtime_get_if_active(&client->dev, true); + pm_status = pm_runtime_get_if_active(&client->dev); if (!pm_status) return 0; |