Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293529
b: refs/heads/master
c: 28c0579
h: refs/heads/master
i:
  293527: cb8365a
v: v3
  • Loading branch information
Adam Jackson authored and Daniel Vetter committed Jan 17, 2012
1 parent 2228e79 commit f42996d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 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: 2aded1b6bb83cabe3ee5763e5c3834e36bf4a61f
refs/heads/master: 28c057945ef5d164925db4fccc64207ee58c8681
8 changes: 7 additions & 1 deletion trunk/drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -970,8 +970,14 @@ static void assert_planes_disabled(struct drm_i915_private *dev_priv,
int cur_pipe;

/* Planes are fixed to pipes on ILK+ */
if (HAS_PCH_SPLIT(dev_priv->dev))
if (HAS_PCH_SPLIT(dev_priv->dev)) {
reg = DSPCNTR(pipe);
val = I915_READ(reg);
WARN((val & DISPLAY_PLANE_ENABLE),
"plane %c assertion failure, should be disabled but not\n",
plane_name(pipe));
return;
}

/* Need to check both planes against the pipe */
for (i = 0; i < 2; i++) {
Expand Down

0 comments on commit f42996d

Please sign in to comment.