summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
index 525d8638..841ec596 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
@@ -227,14 +227,14 @@ static int __gk20a_channel_syncpt_incr(struct gk20a_channel_sync *s,
227 227
228 if (register_irq) { 228 if (register_irq) {
229 /* nvhost action_gpfifo_submit_complete releases this ref. */ 229 /* nvhost action_gpfifo_submit_complete releases this ref. */
230 err = gk20a_channel_busy(c->g->dev); 230 err = gk20a_busy(c->g->dev);
231 231
232 if (!err) { 232 if (!err) {
233 err = nvhost_intr_register_notifier(sp->host1x_pdev, 233 err = nvhost_intr_register_notifier(sp->host1x_pdev,
234 sp->id, thresh, 234 sp->id, thresh,
235 gk20a_channel_syncpt_update, c); 235 gk20a_channel_syncpt_update, c);
236 if (err) 236 if (err)
237 gk20a_channel_idle(c->g->dev); 237 gk20a_idle(c->g->dev);
238 } 238 }
239 239
240 /* Adding interrupt action should never fail. A proper error 240 /* Adding interrupt action should never fail. A proper error