mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
gpu: nvgpu: use priv_ring.isr gops
Use priv_ring.isr gops to call priv ring interrupt handler Bug 200350539 Change-Id: I21b39bd19d281290fee6728286b0a24a32358ae4 Signed-off-by: Seema Khowala <seemaj@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1570372 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
8aacfb1da4
commit
2d4024b0e6
@@ -69,7 +69,7 @@ void mc_gk20a_isr_stall(struct gk20a *g)
|
||||
if (mc_intr_0 & mc_intr_0_pmu_pending_f())
|
||||
gk20a_pmu_isr(g);
|
||||
if (mc_intr_0 & mc_intr_0_priv_ring_pending_f())
|
||||
gk20a_priv_ring_isr(g);
|
||||
g->ops.priv_ring.isr(g);
|
||||
if (mc_intr_0 & mc_intr_0_ltc_pending_f())
|
||||
g->ops.ltc.isr(g);
|
||||
if (mc_intr_0 & mc_intr_0_pbus_pending_f())
|
||||
|
||||
@@ -117,7 +117,7 @@ void mc_gp10b_isr_stall(struct gk20a *g)
|
||||
if (mc_intr_0 & mc_intr_pmu_pending_f())
|
||||
gk20a_pmu_isr(g);
|
||||
if (mc_intr_0 & mc_intr_priv_ring_pending_f())
|
||||
gk20a_priv_ring_isr(g);
|
||||
g->ops.priv_ring.isr(g);
|
||||
if (mc_intr_0 & mc_intr_ltc_pending_f())
|
||||
g->ops.ltc.isr(g);
|
||||
if (mc_intr_0 & mc_intr_pbus_pending_f())
|
||||
|
||||
Reference in New Issue
Block a user