aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/i915/intel_ringbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c
index 78a5061a58f6..9033697783b9 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.c
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.c
@@ -173,7 +173,7 @@ static int init_ring_common(struct intel_ring_buffer *ring)
173 } 173 }
174 174
175 I915_WRITE_CTL(ring, 175 I915_WRITE_CTL(ring,
176 ((ring->gem_object->size - PAGE_SIZE) & RING_NR_PAGES) 176 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
177 | RING_REPORT_64K | RING_VALID); 177 | RING_REPORT_64K | RING_VALID);
178 178
179 /* If the head is still not zero, the ring is dead */ 179 /* If the head is still not zero, the ring is dead */