summaryrefslogtreecommitdiff
path: root/linux-core/i915_buffer.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-01 11:23:21 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-01 11:23:21 +0200
commit4edb95d6e0a00a9a8885603cab2c99e3c6daa705 (patch)
tree2e8ec3692201756af6dcde82aa70688391f47bb7 /linux-core/i915_buffer.c
parent44f6d08988a77a640bea40d09cb61eec7566a5ce (diff)
Various bugfixes.
Diffstat (limited to 'linux-core/i915_buffer.c')
-rw-r--r--linux-core/i915_buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/i915_buffer.c b/linux-core/i915_buffer.c
index ecc6cf8d..598f8772 100644
--- a/linux-core/i915_buffer.c
+++ b/linux-core/i915_buffer.c
@@ -45,9 +45,9 @@ int i915_fence_types(uint32_t buffer_flags, uint32_t *class, uint32_t *type)
{
*class = 0;
if (buffer_flags & (DRM_BO_FLAG_READ | DRM_BO_FLAG_WRITE))
- *type = 1;
- else
*type = 3;
+ else
+ *type = 1;
return 0;
}