Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329417
b: refs/heads/master
c: dbf2b54
h: refs/heads/master
i:
  329415: 48ff80b
v: v3
  • Loading branch information
Daniel Vetter committed Sep 6, 2012
1 parent 404e23b commit 243cd4a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9deac9776b0a95b876bd845ea359d5975c3ba80
refs/heads/master: dbf2b54e78c6976af1f92cd370055a777ae99208
15 changes: 5 additions & 10 deletions trunk/drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -6578,8 +6578,6 @@ static void intel_crtc_reset(struct drm_crtc *crtc)
}

static struct drm_crtc_helper_funcs intel_helper_funcs = {
.mode_fixup = intel_crtc_mode_fixup,
.mode_set = intel_crtc_mode_set,
.mode_set_base_atomic = intel_pipe_set_base_atomic,
.load_lut = intel_crtc_load_lut,
.disable = intel_crtc_disable,
Expand Down Expand Up @@ -6648,8 +6646,8 @@ bool intel_set_mode(struct drm_crtc *crtc,
int x, int y, struct drm_framebuffer *old_fb)
{
struct drm_device *dev = crtc->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
struct drm_encoder_helper_funcs *encoder_funcs;
int saved_x, saved_y;
struct drm_encoder *encoder;
Expand Down Expand Up @@ -6691,20 +6689,20 @@ bool intel_set_mode(struct drm_crtc *crtc,
}
}

if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
if (!(ret = intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) {
DRM_DEBUG_KMS("CRTC fixup failed\n");
goto done;
}
DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);

intel_crtc_prepare_encoders(dev);

crtc_funcs->prepare(crtc);
dev_priv->display.crtc_disable(crtc);

/* Set up the DPLL and any encoders state that needs to adjust or depend
* on the DPLL.
*/
ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
ret = !intel_crtc_mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
if (!ret)
goto done;

Expand All @@ -6721,7 +6719,7 @@ bool intel_set_mode(struct drm_crtc *crtc,
}

/* Now enable the clocks, plane, pipe, and connectors that we set up. */
crtc_funcs->commit(crtc);
dev_priv->display.crtc_enable(crtc);

/* Store real post-adjustment hardware mode. */
crtc->hwmode = *adjusted_mode;
Expand Down Expand Up @@ -7055,9 +7053,6 @@ static void intel_crtc_init(struct drm_device *dev, int pipe)
intel_crtc->active = true; /* force the pipe off on setup_init_config */
intel_crtc->bpp = 24; /* default for pre-Ironlake */

intel_helper_funcs.prepare = dev_priv->display.crtc_disable;
intel_helper_funcs.commit = dev_priv->display.crtc_enable;

drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
}

Expand Down

0 comments on commit 243cd4a

Please sign in to comment.