Do like in the DDX don't try to load detect TV output, there is a lot of false positive detection with those code. Seems to be isolated to RS480/RC410 chipset thought. Need more investigations.
Signed-off-by: Jerome Glisse <[email protected]> --- drivers/gpu/drm/radeon/radeon_connectors.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c index fce4c40..292b170 100644 --- a/drivers/gpu/drm/radeon/radeon_connectors.c +++ b/drivers/gpu/drm/radeon/radeon_connectors.c @@ -1015,7 +1015,7 @@ radeon_add_atom_connector(struct drm_device *dev, ret = drm_connector_helper_add(&radeon_connector->base, &radeon_tv_connector_helper_funcs); if (ret) goto failed; - radeon_connector->dac_load_detect = true; + radeon_connector->dac_load_detect = false; drm_connector_attach_property(&radeon_connector->base, rdev->mode_info.load_detect_property, 1); @@ -1148,7 +1148,7 @@ radeon_add_legacy_connector(struct drm_device *dev, ret = drm_connector_helper_add(&radeon_connector->base, &radeon_tv_connector_helper_funcs); if (ret) goto failed; - radeon_connector->dac_load_detect = true; + radeon_connector->dac_load_detect = false; drm_connector_attach_property(&radeon_connector->base, rdev->mode_info.load_detect_property, 1); -- 1.6.5.2 ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july -- _______________________________________________ Dri-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dri-devel
