summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/ce_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/ce_gp10b.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/ce_gp10b.c b/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
index 048a9ba0..76179b78 100644
--- a/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
@@ -61,9 +61,9 @@ void gp10b_ce_isr(struct gk20a *g, u32 inst_id, u32 pri_base)
61 return; 61 return;
62} 62}
63 63
64int gp10b_ce_nonstall_isr(struct gk20a *g, u32 inst_id, u32 pri_base) 64u32 gp10b_ce_nonstall_isr(struct gk20a *g, u32 inst_id, u32 pri_base)
65{ 65{
66 int ops = 0; 66 u32 ops = 0;
67 u32 ce_intr = gk20a_readl(g, ce_intr_status_r(inst_id)); 67 u32 ce_intr = gk20a_readl(g, ce_intr_status_r(inst_id));
68 68
69 nvgpu_log(g, gpu_dbg_intr, "ce nonstall isr %08x %08x\n", ce_intr, inst_id); 69 nvgpu_log(g, gpu_dbg_intr, "ce nonstall isr %08x %08x\n", ce_intr, inst_id);
@@ -71,8 +71,8 @@ int gp10b_ce_nonstall_isr(struct gk20a *g, u32 inst_id, u32 pri_base)
71 if (ce_intr & ce_intr_status_nonblockpipe_pending_f()) { 71 if (ce_intr & ce_intr_status_nonblockpipe_pending_f()) {
72 gk20a_writel(g, ce_intr_status_r(inst_id), 72 gk20a_writel(g, ce_intr_status_r(inst_id),
73 ce_intr_status_nonblockpipe_pending_f()); 73 ce_intr_status_nonblockpipe_pending_f());
74 ops |= (gk20a_nonstall_ops_wakeup_semaphore | 74 ops |= (GK20A_NONSTALL_OPS_WAKEUP_SEMAPHORE |
75 gk20a_nonstall_ops_post_events); 75 GK20A_NONSTALL_OPS_POST_EVENTS);
76 } 76 }
77 77
78 return ops; 78 return ops;