]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drm: Remove unused fbdev_list members
authorLukas Wunner <lukas@wunner.de>
Sun, 1 Nov 2015 13:22:00 +0000 (14:22 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 24 Nov 2015 10:41:52 +0000 (11:41 +0100)
I noticed that intel_fbdev->our_mode is unused. Introduced by
79e539453b34 ("DRM: i915: add mode setting support").

Then I noticed that intel_fbdev->fbdev_list is unused as well.
Introduced by 386516744ba4 ("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 with cc59487a05b1 ("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>
drivers/gpu/drm/amd/amdgpu/amdgpu_fb.c
drivers/gpu/drm/ast/ast_drv.h
drivers/gpu/drm/cirrus/cirrus_drv.h
drivers/gpu/drm/i915/intel_drv.h
drivers/gpu/drm/nouveau/nouveau_fbcon.h
drivers/gpu/drm/qxl/qxl_fb.c
drivers/gpu/drm/radeon/radeon_fb.c
drivers/gpu/drm/udl/udl_fb.c
drivers/gpu/drm/virtio/virtgpu_fb.c

index 093a8c6189312734570154a08de3ab87f506cec3..6fcbbcc2e99ebd017cc51e698e2dc150f7e6b23e 100644 (file)
@@ -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;
 };
 
index 05f6522c045719f9e63e520d9a80eca0f4e0a6d8..2e931eeba10569e201d75d9847d573e67b15ac5e 100644 (file)
@@ -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;
index 705061537a27694c3834374a22bb297510a041be..d772f7afafebcc638e6fd5429346e91b4ff5099e 100644 (file)
@@ -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 */
index 0598932ce6235b623df9ff6a62d74e100087f78e..d7926658b93d5f206c3b172295be82d038f26684 100644 (file)
@@ -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;
 };
 
index 1e2e9e27a03bbdfdbf215d14d22378f9607c4f76..ca77ad0019783b2f83ea78dcbd6bfa000b1f6e46 100644 (file)
@@ -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;
index c4a552637c9353d70cab76083b7d7786dc436d29..a97d16792bed9ff1cb01eff1143ad20159092d4e 100644 (file)
@@ -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;
index 26da2f4d7b4f56fca3948af07bca9c061bb5ddaf..adc44bbc81a966f047c76e46279f5b48c71dd06d 100644 (file)
@@ -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;
 };
 
index 62c7b1dafaa4ba6f4c573fd6d631b86b3b83ce45..b9df46efb62287966d56282632da20a0014a92a7 100644 (file)
@@ -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;
 };
 
index 6a81e084593bde8539197f417cb72e56498ced22..2242a80866a950f13c3e1c043436c30a41587f8d 100644 (file)
@@ -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;
 };