diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-12-11 07:47:23 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-01-20 09:57:58 -0500 |
commit | 2d13b6796e420ed00389b7399a5d5ac7b1fed436 (patch) | |
tree | 8889af1340e267331fd7969d7f949ac9d6661019 /drivers/gpu/drm/vmwgfx | |
parent | af26ef3b3978349cfbd864163a6ebb4906b733b5 (diff) |
drm: encapsulate crtc->set_config calls
With refcounting we need to adjust framebuffer refcounts at each
callsite - much easier to do if they all call the same little helper
function.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 161f8b2549aa..07dfd823cc30 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | |||
@@ -829,7 +829,7 @@ static void vmw_lastclose(struct drm_device *dev) | |||
829 | 829 | ||
830 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 830 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
831 | set.crtc = crtc; | 831 | set.crtc = crtc; |
832 | ret = crtc->funcs->set_config(&set); | 832 | ret = drm_mode_set_config_internal(&set); |
833 | WARN_ON(ret != 0); | 833 | WARN_ON(ret != 0); |
834 | } | 834 | } |
835 | 835 | ||