From: Christian König Date: Mon, 23 Mar 2015 10:32:59 +0000 (+0100) Subject: drm/radeon: always dump the ring content if it's available X-Git-Tag: v4.0-rc7~12^2~4^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1b01fc347ae7d2b76ac849f7040a32582cb5aee3;p=karo-tx-linux.git drm/radeon: always dump the ring content if it's available Dumping is still possible if a ring isn't ready, only when it isn't allocated at all we need to abort here. Signed-off-by: Christian König Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/radeon/radeon_ring.c b/drivers/gpu/drm/radeon/radeon_ring.c index 2456f69efd23..8c7872339c2a 100644 --- a/drivers/gpu/drm/radeon/radeon_ring.c +++ b/drivers/gpu/drm/radeon/radeon_ring.c @@ -495,7 +495,7 @@ static int radeon_debugfs_ring_info(struct seq_file *m, void *data) seq_printf(m, "%u free dwords in ring\n", ring->ring_free_dw); seq_printf(m, "%u dwords in ring\n", count); - if (!ring->ready) + if (!ring->ring) return 0; /* print 8 dw before current rptr as often it's the last executed