drm/i915: Remove extra "ring"

Sadly, this isn't the first time we've done this:
http://lists.freedesktop.org/archives/intel-gfx/2013-June/029065.html

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Ben Widawsky 2013-09-12 22:28:27 -07:00 committed by Daniel Vetter
parent 3bd26263a9
commit 472f8acc4d
1 changed files with 1 additions and 1 deletions

View File

@ -1462,7 +1462,7 @@ static int i915_context_status(struct seq_file *m, void *unused)
for_each_ring(ring, dev_priv, i) {
if (ring->default_context) {
seq_printf(m, "HW default context %s ring ", ring->name);
seq_printf(m, "HW default context %s ", ring->name);
describe_obj(m, ring->default_context->obj);
seq_putc(m, '\n');
}