search for: qxl_fb_image_init

Displaying 2 results from an estimated 2 matches for "qxl_fb_image_init".

2018 Sep 11
0
[PATCH] qxl: refactor to use drm_fb_helper_fbdev_setup
...art = 0; 161 image->cmap.len = 0; 162 image->cmap.red = NULL; 163 image->cmap.green = NULL; 164 image->cmap.blue = NULL; 165 image->cmap.transp = NULL; > 166 image->data = info->screen_base + (clips->x1 * 4) + (stride * clips->y1); 167 168 qxl_fb_image_init(&qxl_fb_image, qdev, info, NULL); 169 qxl_draw_opaque_fb(&qxl_fb_image, stride); 170 171 return 0; 172 } 173 --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
2018 Dec 12
0
[PATCH v2 18/18] drm/qxl: remove dead qxl fbdev emulation code
...lude <drm/drmP.h> -#include <drm/drm.h> -#include <drm/drm_crtc.h> -#include <drm/drm_crtc_helper.h> -#include <drm/drm_fb_helper.h> -#include <drm/drm_gem_framebuffer_helper.h> - -#include "qxl_drv.h" - -#include "qxl_object.h" - -static void qxl_fb_image_init(struct qxl_fb_image *qxl_fb_image, - struct qxl_device *qdev, struct fb_info *info, - const struct fb_image *image) -{ - qxl_fb_image->qdev = qdev; - if (info) { - qxl_fb_image->visual = info->fix.visual; - if (qxl_fb_image->visual == FB_VISUAL_TRUECOLOR || - qxl_...