diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2011-05-12 22:17:12 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-06-04 10:40:52 -0700 |
commit | bf3301abba31ee71ed8dc87f18fcaebd27dc3b3e (patch) | |
tree | 27d5306fcb45400812bcc81789285ca018b9467f /drivers/gpu | |
parent | c8cbbb8ba9f9f6d2d63513a715700127598e7f86 (diff) | |
download | talos-op-linux-bf3301abba31ee71ed8dc87f18fcaebd27dc3b3e.tar.gz talos-op-linux-bf3301abba31ee71ed8dc87f18fcaebd27dc3b3e.zip |
drm/i915: Only print out the actual number of fences for i915_error_state
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 51c2257b11e6..4d46441cbe2d 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -776,7 +776,7 @@ static int i915_error_state(struct seq_file *m, void *unused) seq_printf(m, " INSTPM: 0x%08x\n", error->instpm); seq_printf(m, " seqno: 0x%08x\n", error->seqno); - for (i = 0; i < 16; i++) + for (i = 0; i < dev_priv->num_fence_regs; i++) seq_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]); if (error->active_bo) |