aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/gpu/drm-mm.rst
diff options
context:
space:
mode:
authorThomas Zimmermann <tzimmermann@suse.de>2018-10-16 10:04:08 +0200
committerAlex Deucher <alexander.deucher@amd.com>2018-11-05 14:20:52 -0500
commite55a5c9b5f5b80275a38293ac0fd38336dd2efdf (patch)
tree91c4dc21b9dcf4a2f49aae464ac481bed805513a /Documentation/gpu/drm-mm.rst
parentdrm/amd/display: Fix incorrect end slope of EETF (diff)
downloadwireguard-linux-e55a5c9b5f5b80275a38293ac0fd38336dd2efdf.tar.xz
wireguard-linux-e55a5c9b5f5b80275a38293ac0fd38336dd2efdf.zip
drm/ttm: Rename ttm_bo_global_{init,release}() to ttm_bo_global_ref_{,}()
The functions ttm_bo_global_init() and ttm_bo_global_release() do not receive an argument of type struct ttm_bo_global. Both take a struct drm_global_reference that contains points to a struct ttm_bo_global_ref. Renaming them reflects this. 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>
Diffstat (limited to 'Documentation/gpu/drm-mm.rst')
-rw-r--r--Documentation/gpu/drm-mm.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst
index e725e8449e72..d0f3c6b03200 100644
--- a/Documentation/gpu/drm-mm.rst
+++ b/Documentation/gpu/drm-mm.rst
@@ -72,8 +72,8 @@ object TTM to provide a pool for buffer object allocation by clients and
the kernel itself. The type of this object should be
TTM_GLOBAL_TTM_BO, and its size should be sizeof(struct
ttm_bo_global). Again, driver-specific init and release functions may
-be provided, likely eventually calling ttm_bo_global_init() and
-ttm_bo_global_release(), respectively. Also, like the previous
+be provided, likely eventually calling ttm_bo_global_ref_init() and
+ttm_bo_global_ref_release(), respectively. Also, like the previous
object, ttm_global_item_ref() is used to create an initial reference
count for the TTM, which will call your initialization function.