summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/mc_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/mc_gp10b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
index 063bda7c..9851fc5d 100644
--- a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
@@ -143,8 +143,9 @@ void mc_gp10b_isr_stall(struct gk20a *g)
143 g->ops.mc.is_intr_nvlink_pending(g, mc_intr_0)) { 143 g->ops.mc.is_intr_nvlink_pending(g, mc_intr_0)) {
144 g->ops.nvlink.isr(g); 144 g->ops.nvlink.isr(g);
145 } 145 }
146 if (mc_intr_0 & mc_intr_pfb_pending_f() && g->ops.fb.fbpa_isr) 146 if (mc_intr_0 & mc_intr_pfb_pending_f() && g->ops.fb.fbpa_isr) {
147 g->ops.fb.fbpa_isr(g); 147 g->ops.fb.fbpa_isr(g);
148 }
148 149
149 nvgpu_log(g, gpu_dbg_intr, "stall intr done 0x%08x\n", mc_intr_0); 150 nvgpu_log(g, gpu_dbg_intr, "stall intr done 0x%08x\n", mc_intr_0);
150 151