diff options
author | Dave Airlie <airlied@redhat.com> | 2021-09-09 05:34:15 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2021-09-09 05:35:54 +0200 |
commit | de04744d658bb36d62d94bf8fe040c51c2954d4e (patch) | |
tree | 2ce4fd7559ba1970a9c856707571959477bd054d /include | |
parent | Merge tag 'amd-drm-next-5.15-2021-09-01' of https://gitlab.freedesktop.org/ag... (diff) | |
parent | drm/ttm: Fix ttm_bo_move_memcpy() for subclassed struct ttm_resource (diff) | |
download | linux-de04744d658bb36d62d94bf8fe040c51c2954d4e.tar.xz linux-de04744d658bb36d62d94bf8fe040c51c2954d4e.zip |
Merge tag 'drm-misc-next-fixes-2021-09-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
drm-misc-next-fixes for v5.15:
- Fix ttm_bo_move_memcpy() when ttm_resource is subclassed.
- Small fixes to panfrost, mgag200, vc4.
- Small ttm compilation fixes.
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/41ff5e54-0837-2226-a182-97ffd11ef01e@linux.intel.com
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/ttm/ttm_tt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/ttm/ttm_tt.h b/include/drm/ttm/ttm_tt.h index 818680c6a8ed..b20e89d321b0 100644 --- a/include/drm/ttm/ttm_tt.h +++ b/include/drm/ttm/ttm_tt.h @@ -27,11 +27,12 @@ #ifndef _TTM_TT_H_ #define _TTM_TT_H_ +#include <linux/pagemap.h> #include <linux/types.h> #include <drm/ttm/ttm_caching.h> #include <drm/ttm/ttm_kmap_iter.h> -struct ttm_bo_device; +struct ttm_device; struct ttm_tt; struct ttm_resource; struct ttm_buffer_object; |