drm/fb helper: don't call drm_helper_connector_dpms directly
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 7 Sep 2012 08:14:52 +0000 (10:14 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 7 Sep 2012 22:51:15 +0000 (00:51 +0200)
Yet again a case where the fb helper is too intimate with the crtc
helper and calls a crtc helepr function directly instead of going
through the interface vtable.

This fixes console blanking in drm/i915 with the new i915-specific
modeset code.

Reported-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Tested-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Acked-by: Dave Airlie <airlied@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/drm_fb_helper.c

index eb79515797d9c3feeb830b614eca9b6d5041e215..b5d05f58c15a28de22ccc6b7cf1ca7b17f6598f7 100644 (file)
@@ -330,7 +330,7 @@ static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
                /* Walk the connectors & encoders on this fb turning them on/off */
                for (j = 0; j < fb_helper->connector_count; j++) {
                        connector = fb_helper->connector_info[j]->connector;
-                       drm_helper_connector_dpms(connector, dpms_mode);
+                       connector->funcs->dpms(connector, dpms_mode);
                        drm_connector_property_set_value(connector,
                                dev->mode_config.dpms_property, dpms_mode);
                }
This page took 0.02937 seconds and 5 git commands to generate.