summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/fifo_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/fifo_gk20a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
index 1815c15b..cb2d8813 100644
--- a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
@@ -1333,12 +1333,12 @@ bool gk20a_fifo_error_tsg(struct gk20a *g,
1333 struct tsg_gk20a *tsg) 1333 struct tsg_gk20a *tsg)
1334{ 1334{
1335 struct channel_gk20a *ch = NULL; 1335 struct channel_gk20a *ch = NULL;
1336 bool verbose = true; 1336 bool verbose = false;
1337 1337
1338 down_read(&tsg->ch_list_lock); 1338 down_read(&tsg->ch_list_lock);
1339 list_for_each_entry(ch, &tsg->ch_list, ch_entry) { 1339 list_for_each_entry(ch, &tsg->ch_list, ch_entry) {
1340 if (gk20a_channel_get(ch)) { 1340 if (gk20a_channel_get(ch)) {
1341 verbose = gk20a_fifo_error_ch(g, ch); 1341 verbose |= gk20a_fifo_error_ch(g, ch);
1342 gk20a_channel_put(ch); 1342 gk20a_channel_put(ch);
1343 } 1343 }
1344 } 1344 }