Home
last modified time | relevance | path

Searched refs:vbox_fb (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/drivers/staging/vboxvideo/
Dvbox_main.c40 struct vbox_framebuffer *vbox_fb = to_vbox_framebuffer(fb); in vbox_user_framebuffer_destroy() local
42 if (vbox_fb->obj) in vbox_user_framebuffer_destroy()
43 drm_gem_object_put_unlocked(vbox_fb->obj); in vbox_user_framebuffer_destroy()
159 struct vbox_framebuffer *vbox_fb, in vbox_framebuffer_init() argument
165 drm_helper_mode_fill_fb_struct(dev, &vbox_fb->base, mode_cmd); in vbox_framebuffer_init()
166 vbox_fb->obj = obj; in vbox_framebuffer_init()
167 ret = drm_framebuffer_init(dev, &vbox_fb->base, &vbox_fb_funcs); in vbox_framebuffer_init()
182 struct vbox_framebuffer *vbox_fb; in vbox_user_framebuffer_create() local
189 vbox_fb = kzalloc(sizeof(*vbox_fb), GFP_KERNEL); in vbox_user_framebuffer_create()
190 if (!vbox_fb) in vbox_user_framebuffer_create()
[all …]
DMakefile5 vbox_drv.o vbox_fb.o vbox_hgsmi.o vbox_irq.o vbox_main.o \
Dvbox_mode.c232 struct vbox_framebuffer *vbox_fb; in vbox_crtc_do_set_base() local
239 vbox_fb = to_vbox_framebuffer(old_fb); in vbox_crtc_do_set_base()
240 obj = vbox_fb->obj; in vbox_crtc_do_set_base()
250 vbox_fb = to_vbox_framebuffer(new_fb); in vbox_crtc_do_set_base()
251 obj = vbox_fb->obj; in vbox_crtc_do_set_base()
264 if (&vbox->fbdev->afb == vbox_fb) in vbox_crtc_do_set_base()
Dvbox_drv.h195 struct vbox_framebuffer *vbox_fb,