aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2011-01-20 06:18:48 -0500
committerChris Wilson <chris@chris-wilson.co.uk>2011-01-20 06:21:40 -0500
commitc0c06bd244179f754d68684fd87674585a153e40 (patch)
treefdf38ac483176a8677740009f056fc95cac491af /drivers/gpu
parentfe4402931e43e81a4129eba41d05cf8907603af5 (diff)
drm/i915/ringbuffer: Kill an annoyingly frequent debug message
This is better handled through the tracepoints and just clutters the debug logs. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/intel_ringbuffer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c
index 03e337072517..94640e0e4edf 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.c
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.c
@@ -606,7 +606,6 @@ ring_add_request(struct intel_ring_buffer *ring,
606 intel_ring_emit(ring, MI_USER_INTERRUPT); 606 intel_ring_emit(ring, MI_USER_INTERRUPT);
607 intel_ring_advance(ring); 607 intel_ring_advance(ring);
608 608
609 DRM_DEBUG_DRIVER("%s %d\n", ring->name, seqno);
610 *result = seqno; 609 *result = seqno;
611 return 0; 610 return 0;
612} 611}