summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gk20a/mc_gk20a.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/mc_gp10b.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/mc_gk20a.c b/drivers/gpu/nvgpu/gk20a/mc_gk20a.c
index ec507e07..9d9256bd 100644
--- a/drivers/gpu/nvgpu/gk20a/mc_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/mc_gk20a.c
@@ -69,7 +69,7 @@ void mc_gk20a_isr_stall(struct gk20a *g)
69 if (mc_intr_0 & mc_intr_0_pmu_pending_f()) 69 if (mc_intr_0 & mc_intr_0_pmu_pending_f())
70 gk20a_pmu_isr(g); 70 gk20a_pmu_isr(g);
71 if (mc_intr_0 & mc_intr_0_priv_ring_pending_f()) 71 if (mc_intr_0 & mc_intr_0_priv_ring_pending_f())
72 gk20a_priv_ring_isr(g); 72 g->ops.priv_ring.isr(g);
73 if (mc_intr_0 & mc_intr_0_ltc_pending_f()) 73 if (mc_intr_0 & mc_intr_0_ltc_pending_f())
74 g->ops.ltc.isr(g); 74 g->ops.ltc.isr(g);
75 if (mc_intr_0 & mc_intr_0_pbus_pending_f()) 75 if (mc_intr_0 & mc_intr_0_pbus_pending_f())
diff --git a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
index 4541cedd..9aea76f9 100644
--- a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
@@ -117,7 +117,7 @@ void mc_gp10b_isr_stall(struct gk20a *g)
117 if (mc_intr_0 & mc_intr_pmu_pending_f()) 117 if (mc_intr_0 & mc_intr_pmu_pending_f())
118 gk20a_pmu_isr(g); 118 gk20a_pmu_isr(g);
119 if (mc_intr_0 & mc_intr_priv_ring_pending_f()) 119 if (mc_intr_0 & mc_intr_priv_ring_pending_f())
120 gk20a_priv_ring_isr(g); 120 g->ops.priv_ring.isr(g);
121 if (mc_intr_0 & mc_intr_ltc_pending_f()) 121 if (mc_intr_0 & mc_intr_ltc_pending_f())
122 g->ops.ltc.isr(g); 122 g->ops.ltc.isr(g);
123 if (mc_intr_0 & mc_intr_pbus_pending_f()) 123 if (mc_intr_0 & mc_intr_pbus_pending_f())