summaryrefslogtreecommitdiff
path: root/linux-core
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2007-06-15 10:35:52 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2007-06-15 10:35:52 +0200
commit84bea383538df83c049680497ba2179e50d07ca3 (patch)
tree8f3e30b8b6d51a996bbb232da1df17740b3bebc2 /linux-core
parent3ee31a1f356df4b81e3ba226a416627fd3b70e07 (diff)
Fix i915 sequence mask.
Diffstat (limited to 'linux-core')
-rw-r--r--linux-core/i915_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/i915_drv.c b/linux-core/i915_drv.c
index 7fdb0839..4c35b4c3 100644
--- a/linux-core/i915_drv.c
+++ b/linux-core/i915_drv.c
@@ -43,7 +43,7 @@ static drm_fence_driver_t i915_fence_driver = {
.num_classes = 1,
.wrap_diff = (1 << 30),
.flush_diff = (1 << 29),
- .sequence_mask = 0xffffffffU,
+ .sequence_mask = 0x7fffffffU,
.lazy_capable = 1,
.emit = i915_fence_emit_sequence,
.poke_flush = i915_poke_flush,