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.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
index daf40d9c..1f7b78f9 100644
--- a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
@@ -1191,15 +1191,13 @@ void gk20a_fifo_recover_ch(struct gk20a *g, u32 hw_chid, bool verbose)
1191 struct channel_gk20a *ch = 1191 struct channel_gk20a *ch =
1192 g->fifo.channel + hw_chid; 1192 g->fifo.channel + hw_chid;
1193 1193
1194 if (verbose)
1195 gk20a_debug_dump(g->dev);
1196
1197 gk20a_channel_abort(ch); 1194 gk20a_channel_abort(ch);
1198 for (i = 0; i < g->fifo.max_runlists; i++) 1195 for (i = 0; i < g->fifo.max_runlists; i++)
1199 gk20a_fifo_update_runlist(g, i, 1196 gk20a_fifo_update_runlist(g, i,
1200 hw_chid, false, false); 1197 hw_chid, false, false);
1201 1198
1202 gk20a_fifo_set_ctx_mmu_error(g, ch); 1199 if (gk20a_fifo_set_ctx_mmu_error(g, ch))
1200 gk20a_debug_dump(g->dev);
1203 } 1201 }
1204} 1202}
1205 1203