diff options
| author | Rob Clark <[email protected]> | 2021-07-28 01:06:08 +0000 |
|---|---|---|
| committer | Rob Clark <[email protected]> | 2021-07-28 01:09:18 +0000 |
| commit | 030af2b05aee292ae72e57c2d7ca1c8efd6e89a3 (patch) | |
| tree | 2a580dee82e2fb26b39abc5a73fd25b0dcb19442 /drivers/gpu/drm/msm/msm_ringbuffer.c | |
| parent | drm/msm: Small submitqueue creation cleanup (diff) | |
| download | kernel-030af2b05aee292ae72e57c2d7ca1c8efd6e89a3.tar.gz kernel-030af2b05aee292ae72e57c2d7ca1c8efd6e89a3.zip | |
drm/msm: drop drm_gem_object_put_locked()
No idea why we were still using this. It certainly hasn't been needed
for some time. So drop the pointless twin codepaths.
Signed-off-by: Rob Clark <[email protected]>
Acked-by: Christian König <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_ringbuffer.c')
| -rw-r--r-- | drivers/gpu/drm/msm/msm_ringbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/msm_ringbuffer.c b/drivers/gpu/drm/msm/msm_ringbuffer.c index 054461662af5..437cca57d005 100644 --- a/drivers/gpu/drm/msm/msm_ringbuffer.c +++ b/drivers/gpu/drm/msm/msm_ringbuffer.c @@ -67,7 +67,7 @@ void msm_ringbuffer_destroy(struct msm_ringbuffer *ring) msm_fence_context_free(ring->fctx); - msm_gem_kernel_put(ring->bo, ring->gpu->aspace, false); + msm_gem_kernel_put(ring->bo, ring->gpu->aspace); kfree(ring); } |
