drm: Remove unused fbdev_list members
I noticed that intel_fbdev->our_mode is unused. Introduced by79e539453b
("DRM: i915: add mode setting support"). Then I noticed that intel_fbdev->fbdev_list is unused as well. Introduced by386516744b
("drm/fb: fix fbdev object model + cleanup properly.") in i915, nouveau and radeon. Subsequently cargo culted to amdgpu, ast, cirrus, qxl, udl, virtio and mgag200. Already removed from the latter withcc59487a05
("drm/mgag200: 'fbdev_list' in 'struct mga_fbdev' is not used"). Remove it from the others. Signed-off-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
5f91190505
commit
cb1197173f
|
@ -45,7 +45,6 @@
|
|||
struct amdgpu_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct amdgpu_framebuffer rfb;
|
||||
struct list_head fbdev_list;
|
||||
struct amdgpu_device *adev;
|
||||
};
|
||||
|
||||
|
|
|
@ -256,7 +256,6 @@ struct ast_framebuffer {
|
|||
struct ast_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct ast_framebuffer afb;
|
||||
struct list_head fbdev_list;
|
||||
void *sysram;
|
||||
int size;
|
||||
struct ttm_bo_kmap_obj mapping;
|
||||
|
|
|
@ -153,7 +153,6 @@ struct cirrus_device {
|
|||
struct cirrus_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct cirrus_framebuffer gfb;
|
||||
struct list_head fbdev_list;
|
||||
void *sysram;
|
||||
int size;
|
||||
int x1, y1, x2, y2; /* dirty rect */
|
||||
|
|
|
@ -123,8 +123,6 @@ struct intel_framebuffer {
|
|||
struct intel_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct intel_framebuffer *fb;
|
||||
struct list_head fbdev_list;
|
||||
struct drm_display_mode *our_mode;
|
||||
int preferred_bpp;
|
||||
};
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
struct nouveau_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct nouveau_framebuffer nouveau_fb;
|
||||
struct list_head fbdev_list;
|
||||
struct drm_device *dev;
|
||||
unsigned int saved_flags;
|
||||
struct nvif_object surf2d;
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
struct qxl_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct qxl_framebuffer qfb;
|
||||
struct list_head fbdev_list;
|
||||
struct qxl_device *qdev;
|
||||
|
||||
spinlock_t delayed_ops_lock;
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
struct radeon_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct radeon_framebuffer rfb;
|
||||
struct list_head fbdev_list;
|
||||
struct radeon_device *rdev;
|
||||
};
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@ module_param(fb_defio, int, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP);
|
|||
struct udl_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct udl_framebuffer ufb;
|
||||
struct list_head fbdev_list;
|
||||
int fb_count;
|
||||
};
|
||||
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
struct virtio_gpu_fbdev {
|
||||
struct drm_fb_helper helper;
|
||||
struct virtio_gpu_framebuffer vgfb;
|
||||
struct list_head fbdev_list;
|
||||
struct virtio_gpu_device *vgdev;
|
||||
struct delayed_work work;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue