Displaying 1 result from an estimated 1 matches for "466037c".
Did you mean:
466037
2014 Jan 23
0
[PATCH] drm/nouveau: resume display if any later suspend bits fail
...at the bug report has cursor setting
failures, and suspending the display kills the cursor.
drivers/gpu/drm/nouveau/nouveau_drm.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
index 466037c..bfd02410 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -503,19 +503,21 @@ nouveau_do_suspend(struct drm_device *dev)
if (drm->cechan) {
ret = nouveau_channel_idle(drm->cechan);
if (ret)
- return ret;
+ goto fail_display;
}...