diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2015-07-28 10:20:57 +0300 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-07-28 10:22:13 +0300 |
commit | 697bb728d9e2367020aa0c5af7363809d7658e43 (patch) | |
tree | 93219674da14e07b9c11e65729e01261fc1098e8 /drivers/gpu/drm/nouveau | |
parent | b7eea2d7e67cd4b65f42c00624277dae780f7009 (diff) | |
download | linux-697bb728d9e2367020aa0c5af7363809d7658e43.tar.xz |
drm/nouveau/kms/nv50-: guard against enabling cursor on disabled heads
Userspace has started doing this, which upsets the display class hw
error checking in various unpleasant ways.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_display.c b/drivers/gpu/drm/nouveau/nv50_display.c index 7da7958556a3..981342d142ff 100644 --- a/drivers/gpu/drm/nouveau/nv50_display.c +++ b/drivers/gpu/drm/nouveau/nv50_display.c @@ -979,7 +979,7 @@ nv50_crtc_cursor_show_hide(struct nouveau_crtc *nv_crtc, bool show, bool update) { struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev); - if (show && nv_crtc->cursor.nvbo) + if (show && nv_crtc->cursor.nvbo && nv_crtc->base.enabled) nv50_crtc_cursor_show(nv_crtc); else nv50_crtc_cursor_hide(nv_crtc); |