Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 180539
b: refs/heads/master
c: f072d2e
h: refs/heads/master
i:
  180537: f559dd4
  180535: 45cc253
v: v3
  • Loading branch information
Zhenyu Wang authored and Eric Anholt committed Feb 10, 2010
1 parent bf904f7 commit ee1b16b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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: b1b87f6b65a770a69f3632cf7c1f9182547c1249
refs/heads/master: f072d2e77128c5b332ce217764cf170b660b99dc
16 changes: 8 additions & 8 deletions trunk/drivers/gpu/drm/i915/i915_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,21 +309,21 @@ irqreturn_t ironlake_irq_handler(struct drm_device *dev)
if (de_iir & DE_GSE)
ironlake_opregion_gse_intr(dev);

if (de_iir & DE_PLANEA_FLIP_DONE)
if (de_iir & DE_PLANEA_FLIP_DONE) {
intel_prepare_page_flip(dev, 0);
intel_finish_page_flip(dev, 0);
}

if (de_iir & DE_PLANEB_FLIP_DONE)
if (de_iir & DE_PLANEB_FLIP_DONE) {
intel_prepare_page_flip(dev, 1);
intel_finish_page_flip(dev, 1);
}

if (de_iir & DE_PIPEA_VBLANK) {
if (de_iir & DE_PIPEA_VBLANK)
drm_handle_vblank(dev, 0);
intel_finish_page_flip(dev, 0);
}

if (de_iir & DE_PIPEB_VBLANK) {
if (de_iir & DE_PIPEB_VBLANK)
drm_handle_vblank(dev, 1);
intel_finish_page_flip(dev, 1);
}

/* check event from PCH */
if ((de_iir & DE_PCH_EVENT) &&
Expand Down

0 comments on commit ee1b16b

Please sign in to comment.