aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhao Yakui <[email protected]>2009-07-08 14:13:13 +0800
committerEric Anholt <[email protected]>2009-07-10 12:39:51 -0700
commitaf4fcb574efa90373b02ae0bb8b54d710c32eeb4 (patch)
tree5b461db2482a266b8b7f6b24008ec9a4c1554b45
parent354ff96772540d2e836194bf14dd9c05c274055c (diff)
drm: Disable the unused connectors explicitly when resuming with KMS.
Signed-off-by: Zhao Yakui <[email protected]> Acked-by: Jesse Barnes <[email protected]> Acked-by: Dave Airlie <[email protected]> Signed-off-by: Eric Anholt <[email protected]>
-rw-r--r--drivers/gpu/drm/drm_crtc_helper.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index a6f73f1e99d9..3da9cfa31848 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -1090,6 +1090,8 @@ int drm_helper_resume_force_mode(struct drm_device *dev)
if (ret == false)
DRM_ERROR("failed to set mode on crtc %p\n", crtc);
}
+ /* disable the unused connectors while restoring the modesetting */
+ drm_helper_disable_unused_functions(dev);
return 0;
}
EXPORT_SYMBOL(drm_helper_resume_force_mode);