summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gr_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
index ead5d34a..39d6879b 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
@@ -5583,11 +5583,12 @@ int gr_gk20a_handle_sm_exception(struct gk20a *g, u32 gpc, u32 tpc, u32 sm,
5583 } 5583 }
5584 } 5584 }
5585 5585
5586 if (ignore_debugger) 5586 if (ignore_debugger) {
5587 nvgpu_log(g, gpu_dbg_intr | gpu_dbg_gpu_dbg, 5587 nvgpu_log(g, gpu_dbg_intr | gpu_dbg_gpu_dbg,
5588 "ignore_debugger set, skipping event posting"); 5588 "ignore_debugger set, skipping event posting");
5589 else 5589 } else {
5590 *post_event |= true; 5590 *post_event = true;
5591 }
5591 5592
5592 return ret; 5593 return ret;
5593} 5594}