drm/vgem: Drop struct drm_vgem_gem_object

Commit 45d9c8dde4 ("drm/vgem: use shmem helpers") introduced shmem
helpers to vgem and with that, removed all uses of the struct
drm_vgem_gem_object. So, as the struct is no longer used, delete it.

Signed-off-by: Maíra Canal <mcanal@igalia.com>
Reviewed-by: Melissa Wen <mwen@igalia.com>
Signed-off-by: Maíra Canal <mairacanal@riseup.net>
Link: https://patchwork.freedesktop.org/patch/msgid/20230222160617.171429-1-mcanal@igalia.com
This commit is contained in:
Maíra Canal 2023-02-22 13:06:17 -03:00 committed by Maíra Canal
parent 749b30efff
commit 28a4f5609c
No known key found for this signature in database
GPG Key ID: B02EE8FD76781ED5
1 changed files with 0 additions and 11 deletions

View File

@ -39,17 +39,6 @@ struct vgem_file {
struct mutex fence_mutex;
};
#define to_vgem_bo(x) container_of(x, struct drm_vgem_gem_object, base)
struct drm_vgem_gem_object {
struct drm_gem_object base;
struct page **pages;
unsigned int pages_pin_count;
struct mutex pages_lock;
struct sg_table *table;
};
int vgem_fence_open(struct vgem_file *file);
int vgem_fence_attach_ioctl(struct drm_device *dev,
void *data,