summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
diff options
context:
space:
mode:
authorShridhar Rasal <srasal@nvidia.com>2014-04-22 01:03:28 -0400
committerDan Willemsen <dwillemsen@nvidia.com>2015-03-18 15:09:14 -0400
commitc5466deaa18b0834f7e30dac2a362025b3976120 (patch)
treef2727a282c7bc562ae52b459289fe781ea240e9b /drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
parent4295256967f4edf68f1a148494b320d6cb0e22a1 (diff)
gpu: nvgpu: disable aggresive syncpoint destroy
Bug 1503225 Change-Id: I52fd660de9bd251ceb936ad4edc34359753a0074 Signed-off-by: Shridhar Rasal <srasal@nvidia.com> Reviewed-on: http://git-master/r/399460 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
index d0b975a9..525d8638 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
@@ -357,7 +357,7 @@ gk20a_channel_syncpt_create(struct channel_gk20a *c)
357 sp->ops.set_min_eq_max = gk20a_channel_syncpt_set_min_eq_max; 357 sp->ops.set_min_eq_max = gk20a_channel_syncpt_set_min_eq_max;
358 sp->ops.destroy = gk20a_channel_syncpt_destroy; 358 sp->ops.destroy = gk20a_channel_syncpt_destroy;
359 359
360 sp->ops.syncpt_aggressive_destroy = true; 360 sp->ops.syncpt_aggressive_destroy = false;
361 361
362 return &sp->ops; 362 return &sp->ops;
363} 363}