wlcore: sysfs: use pm_runtime_resume_and_get() instead of pm_runtime_get_sync()
Using pm_runtime_resume_and_get is more appropriate for simplifing code Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20220413093431.2538254-1-chi.minghao@zte.com.cn
This commit is contained in:
parent
ab589ac24e
commit
da8e909c99
@ -56,11 +56,9 @@ static ssize_t bt_coex_state_store(struct device *dev,
|
||||
if (unlikely(wl->state != WLCORE_STATE_ON))
|
||||
goto out;
|
||||
|
||||
ret = pm_runtime_get_sync(wl->dev);
|
||||
if (ret < 0) {
|
||||
pm_runtime_put_noidle(wl->dev);
|
||||
ret = pm_runtime_resume_and_get(wl->dev);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
}
|
||||
|
||||
wl1271_acx_sg_enable(wl, wl->sg_enabled);
|
||||
pm_runtime_mark_last_busy(wl->dev);
|
||||
|
Loading…
x
Reference in New Issue
Block a user