summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2014-04-23 02:31:28 -0400
committerDan Willemsen <dwillemsen@nvidia.com>2015-03-18 15:09:43 -0400
commit6b71c1d7402837dc72da079e22f0bd0f068eaf14 (patch)
tree83b913593d1c72ba49988e42f49fa8656021b1f2 /drivers/gpu/nvgpu
parentb1538c34167c01cefb6308d7209978fa1e39b28e (diff)
gpu: nvgpu: gk20a: set syncpt_aggressive_destroy
Set the flag syncpt_aggressive_destroy to enable destroying syncpts aggressively Bug 1305024 Change-Id: Iedff9c6bdb6bbe02057972733126ce685daa8d7f Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/400234 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Shridhar Rasal <srasal@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu')
-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 841ec596..8122d213 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 = false; 360 sp->ops.syncpt_aggressive_destroy = true;
361 361
362 return &sp->ops; 362 return &sp->ops;
363} 363}