diff options
author | Eric Anholt <eric@anholt.net> | 2010-05-25 20:11:23 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-05-26 12:10:39 -0700 |
commit | 58e54f62c91aff4f4be96c6d8771ca9110969f49 (patch) | |
tree | 7f3697f48a8b608ece351c6bad5e3a34d51138ac /intel | |
parent | fcf3e616eeeb289f96af1436d809f0a1a42bebb7 (diff) |
intel_bufmgr_fake: fix compile warning.
Diffstat (limited to 'intel')
-rw-r--r-- | intel/intel_bufmgr_fake.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intel/intel_bufmgr_fake.c b/intel/intel_bufmgr_fake.c index 9914952f..bc4a2ff9 100644 --- a/intel/intel_bufmgr_fake.c +++ b/intel/intel_bufmgr_fake.c @@ -299,10 +299,10 @@ _fence_wait_internal(drm_intel_bufmgr_fake *bufmgr_fake, int seq) return; } - DBG("wait 0x%08x\n", iw.irq_seq); - iw.irq_seq = seq; + DBG("wait 0x%08x\n", iw.irq_seq); + /* The kernel IRQ_WAIT implementation is all sorts of broken. * 1) It returns 1 to 0x7fffffff instead of using the full 32-bit * unsigned range. |