summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
index 55ee5181..10a1001e 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
@@ -344,7 +344,12 @@ gk20a_channel_syncpt_create(struct channel_gk20a *c)
344 344
345 sp->c = c; 345 sp->c = c;
346 sp->host1x_pdev = c->g->host1x_dev; 346 sp->host1x_pdev = c->g->host1x_dev;
347 sp->id = nvhost_get_syncpt_host_managed(sp->host1x_pdev, c->hw_chid); 347 sp->id = nvhost_get_syncpt_host_managed(c->g->dev, c->hw_chid);
348 if (!sp->id) {
349 kfree(sp);
350 gk20a_err(&c->g->dev->dev, "failed to get free syncpt");
351 return NULL;
352 }
348 353
349 sp->ops.wait_cpu = gk20a_channel_syncpt_wait_cpu; 354 sp->ops.wait_cpu = gk20a_channel_syncpt_wait_cpu;
350 sp->ops.is_expired = gk20a_channel_syncpt_is_expired; 355 sp->ops.is_expired = gk20a_channel_syncpt_is_expired;