Commit 3447eebe authored by Minghao Chi's avatar Minghao Chi Committed by Kalle Valo
Browse files

wlcore: testmode: 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: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarMinghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220413093502.2538316-1-chi.minghao@zte.com.cn
parent da8e909c
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -83,11 +83,9 @@ static int wl1271_tm_cmd_test(struct wl1271 *wl, struct nlattr *tb[])
		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;
	}

	ret = wl1271_cmd_test(wl, buf, buf_len, answer);
	if (ret < 0) {
@@ -158,11 +156,9 @@ static int wl1271_tm_cmd_interrogate(struct wl1271 *wl, struct nlattr *tb[])
		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;
	}

	cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
	if (!cmd) {