2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-02 02:34:05 +08:00

drm/ttm: ttm_bo_device is now ttm_device

These names were changed in

commit 8af8a109b3
Author: Christian König <christian.koenig@amd.com>
Date:   Thu Oct 1 14:51:40 2020 +0200

    drm/ttm: device naming cleanup

But he missed a couple of them.

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Cc: Christian König <christian.koenig@amd.com>
Fixes: 8af8a109b3 ("drm/ttm: device naming cleanup")
Link: https://patchwork.freedesktop.org/patch/msgid/20210812203443.1725307-1-jason@jlekstrand.net
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
Jason Ekstrand 2021-08-12 15:34:42 -05:00 committed by Christian König
parent 2819cf0e7d
commit bd4dadaf04
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ TTM initialization
This section is outdated. This section is outdated.
Drivers wishing to support TTM must pass a filled :c:type:`ttm_bo_driver Drivers wishing to support TTM must pass a filled :c:type:`ttm_bo_driver
<ttm_bo_driver>` structure to ttm_bo_device_init, together with an <ttm_bo_driver>` structure to ttm_device_init, together with an
initialized global reference to the memory manager. The ttm_bo_driver initialized global reference to the memory manager. The ttm_bo_driver
structure contains several fields with function pointers for structure contains several fields with function pointers for
initializing the TTM, allocating and freeing memory, waiting for command initializing the TTM, allocating and freeing memory, waiting for command

View File

@ -31,7 +31,7 @@
#include <drm/ttm/ttm_caching.h> #include <drm/ttm/ttm_caching.h>
#include <drm/ttm/ttm_kmap_iter.h> #include <drm/ttm/ttm_kmap_iter.h>
struct ttm_bo_device; struct ttm_device;
struct ttm_tt; struct ttm_tt;
struct ttm_resource; struct ttm_resource;
struct ttm_buffer_object; struct ttm_buffer_object;