]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/radeon: Replace ttm_bo_reference with ttm_bo_get
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 31 Jul 2018 06:16:58 +0000 (08:16 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 31 Jul 2018 21:58:21 +0000 (16:58 -0500)
The function ttm_bo_get acquires a reference on a TTM buffer object. The
function's name is more aligned to the Linux kernel convention of naming
ref-counting function _get and _put.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_object.c

index edbb4cd519fd6843c7e65398e8a33c9a0da7c095..1a9d4f547024f7bb5e4e8829dcb9aaabd7b30f0c 100644 (file)
@@ -307,7 +307,7 @@ struct radeon_bo *radeon_bo_ref(struct radeon_bo *bo)
        if (bo == NULL)
                return NULL;
 
-       ttm_bo_reference(&bo->tbo);
+       ttm_bo_get(&bo->tbo);
        return bo;
 }