projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a875f58
)
drm/amdgpu: Replace ttm_bo_reference with ttm_bo_get
author
Thomas Zimmermann
<
[email protected]
>
Tue, 31 Jul 2018 07:12:35 +0000
(09:12 +0200)
committer
Alex Deucher
<
[email protected]
>
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.
v2:
* changed prefix to drm/amdgpu
Signed-off-by: Thomas Zimmermann <
[email protected]
>
Reviewed-by: Christian König <
[email protected]
>
Signed-off-by: Alex Deucher <
[email protected]
>
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
index 21bfa2d8039e030b332406e9789df2343f609013..f7ac9abf9cc1163f4717ff39d110fe6cf1031593 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
+++ b/
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
@@
-825,7
+825,7
@@
struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo)
if (bo == NULL)
return NULL;
- ttm_bo_
reference
(&bo->tbo);
+ ttm_bo_
get
(&bo->tbo);
return bo;
}