diff options
author | Keith Packard <keithp@keithp.com> | 2008-05-05 11:27:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-05-05 11:27:06 -0700 |
commit | 4511e6cd80b4c47a142db48727753da8d0898857 (patch) | |
tree | 9f1ba4b2ac2fcb193b182b0b4e0748bc1e0e7519 /shared-core | |
parent | b6f173c4300e90be9bdd3b24003b800afd8819c5 (diff) |
Correct execbuffer offset. Add memory barrier and chipset flush.
Diffstat (limited to 'shared-core')
-rw-r--r-- | shared-core/i915_dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c index 4bf37325..f23e2a36 100644 --- a/shared-core/i915_dma.c +++ b/shared-core/i915_dma.c @@ -470,6 +470,7 @@ int i915_emit_box(struct drm_device * dev, return -EFAULT; } + DRM_INFO ("box %d,%d - %d,%d\n", box.x1, box.y1, box.x2, box.y2); if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) { DRM_ERROR("Bad box %d,%d..%d,%d\n", box.x1, box.y1, box.x2, box.y2); |