gpu: nvgpu: Do not init interrupt mask

Interrupt mask init state is correct, so do not touch it.

Bug 1567274

Change-Id: I70673e406944823bd1cbfeee93ec75ce1e1af5da
Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com>
Reviewed-on: http://git-master/r/558292
This commit is contained in:
Terje Bergstrom
2014-10-16 10:24:10 +03:00
committed by Dan Willemsen
parent f2c905e482
commit c2fbf8a54c

View File

@@ -884,18 +884,9 @@ static int gk20a_pm_finalize_poweron(struct device *dev)
g->power_on = true; g->power_on = true;
gk20a_writel(g, mc_intr_mask_1_r(),
mc_intr_0_pfifo_pending_f()
| mc_intr_0_pgraph_pending_f());
gk20a_writel(g, mc_intr_en_1_r(), gk20a_writel(g, mc_intr_en_1_r(),
mc_intr_en_1_inta_hardware_f()); mc_intr_en_1_inta_hardware_f());
gk20a_writel(g, mc_intr_mask_0_r(),
mc_intr_0_pgraph_pending_f()
| mc_intr_0_pfifo_pending_f()
| mc_intr_0_priv_ring_pending_f()
| mc_intr_0_ltc_pending_f()
| mc_intr_0_pbus_pending_f());
gk20a_writel(g, mc_intr_en_0_r(), gk20a_writel(g, mc_intr_en_0_r(),
mc_intr_en_0_inta_hardware_f()); mc_intr_en_0_inta_hardware_f());