Dave Airlie <airl...@linux.ie> writes:

> > An rv350 specific issue then?
>
> I booted it on my desktop rv370 and I'm sure Michel has booted it on
> his rv350 macbook, so might be a bios issue or soemthing else.

Maybe but note that drm-next just complains that there's no modes:

"Connected connector with 0 modes"

whereas 2.6.31 kernel reports this too, but also says it's fallbacking
on standard modes:

i2c-adapter i2c-0: unable to read EDID block.
radeon 0000:02:00.0: VGA-1: no EDID data
[drm:drm_helper_initial_config] *ERROR* connectors have no modes, using 
standard modes

IMHO, the culprit would be that chunk:
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index 6aaa2cb..ff447f1 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -940,16 +945,9 @@ bool drm_helper_initial_config(struct drm_device *dev)
                         dev->mode_config.max_height);

    /*
-    * None of the available connectors had any modes, so add some
-    * and try to light them up anyway
+    * we shouldn't end up with no modes here.
     */
-   if (!count) {
-       DRM_ERROR("connectors have no modes, using standard modes\n");
-       list_for_each_entry(connector,
-                   &dev->mode_config.connector_list,
-                   head)
-           drm_helper_add_std_modes(dev, connector);
-   }
+   WARN(!count, "Connected connector with 0 modes\n");
------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to