Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37508
b: refs/heads/master
c: 78eca43
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Morton authored and Dave Airlie committed Sep 21, 2006
1 parent e4c7817 commit 0462f50
Show file tree
Hide file tree
Showing 2 changed files with 2 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: a1d0fcf5a1cf56ae4711c7e0f857832724a67e8b
refs/heads/master: 78eca43d0391f59c3b1505bb7bd38ff45b650aab
2 changes: 1 addition & 1 deletion trunk/drivers/char/drm/i915_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ static int i915_emit_box(drm_device_t * dev,
BEGIN_LP_RING(4);
OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
OUT_RING(((box.x2 - 1) & 0xffff) ((box.y2 - 1) << 16));
OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
OUT_RING(DR4);
ADVANCE_LP_RING();
} else {
Expand Down

0 comments on commit 0462f50

Please sign in to comment.