Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/qxl: Remove fbcon acceleration leftovers

These are leftovers from 13aff184ed9f ("drm/qxl: remove dead qxl fbdev
emulation code").

v2: Somehow these structs provided the struct qxl_device pre-decl,
reorder the header to not anger compilers.

Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: virtualization@lists.linux-foundation.org
Cc: spice-devel@lists.freedesktop.org
Link: https://patchwork.freedesktop.org/patch/msgid/20201029133347.4088884-1-daniel.vetter@ffwll.ch

+2 -16
+2 -16
drivers/gpu/drm/qxl/qxl_drv.h
··· 169 169 struct list_head chunk_list; 170 170 }; 171 171 172 - struct qxl_fb_image { 173 - struct qxl_device *qdev; 174 - uint32_t pseudo_palette[16]; 175 - struct fb_image fb_image; 176 - uint32_t visual; 177 - }; 178 - 179 - struct qxl_draw_fill { 180 - struct qxl_device *qdev; 181 - struct qxl_rect rect; 182 - uint32_t color; 183 - uint16_t rop; 184 - }; 185 - 186 172 /* 187 173 * Debugfs 188 174 */ ··· 176 190 struct drm_info_list *files; 177 191 unsigned int num_files; 178 192 }; 179 - 180 - int qxl_debugfs_fence_init(struct qxl_device *rdev); 181 193 182 194 struct qxl_device { 183 195 struct drm_device ddev; ··· 257 273 }; 258 274 259 275 #define to_qxl(dev) container_of(dev, struct qxl_device, ddev) 276 + 277 + int qxl_debugfs_fence_init(struct qxl_device *rdev); 260 278 261 279 extern const struct drm_ioctl_desc qxl_ioctls[]; 262 280 extern int qxl_max_ioctl;