Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 909e9c9c authored by YueHaibing's avatar YueHaibing Committed by Ben Skeggs
Browse files

drm/nouveau/debugfs: Fix check of pm_runtime_get_sync failure



pm_runtime_get_sync returns negative on failure.

Fixes: eaeb9010 ("drm/nouveau/debugfs: Wake up GPU before doing any reclocking")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 18ec3c12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ nouveau_debugfs_pstate_set(struct file *file, const char __user *ubuf,
	}

	ret = pm_runtime_get_sync(drm->dev);
	if (IS_ERR_VALUE(ret) && ret != -EACCES)
	if (ret < 0 && ret != -EACCES)
		return ret;
	ret = nvif_mthd(ctrl, NVIF_CONTROL_PSTATE_USER, &args, sizeof(args));
	pm_runtime_put_autosuspend(drm->dev);