Skip to content

Commit

Permalink
drm/nouveau/dispnv04: Use helper to turn off CRTC
Browse files Browse the repository at this point in the history
Use shiny new drm_crtc_force_disable() instead of open coding the same.
No functional change intended.

Cc: Ben Skeggs <bskeggs@redhat.com>
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/95bfab0175ea327f777d43dcc18034bf42ca2287.1465392124.git.lukas@wunner.de
  • Loading branch information
Lukas Wunner authored and Daniel Vetter committed Jun 24, 2016
1 parent cfe2741 commit 8f76f5a
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,13 +749,8 @@ static int nv17_tv_set_property(struct drm_encoder *encoder,

/* Disable the crtc to ensure a full modeset is
* performed whenever it's turned on again. */
if (crtc) {
struct drm_mode_set modeset = {
.crtc = crtc,
};

drm_mode_set_config_internal(&modeset);
}
if (crtc)
drm_crtc_force_disable(crtc);
}

return 0;
Expand Down

0 comments on commit 8f76f5a

Please sign in to comment.