Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/gpu/drm/vboxvideo/
Dvbox_main.c21 struct vbox_framebuffer *vbox_fb = to_vbox_framebuffer(fb); in vbox_user_framebuffer_destroy() local
23 if (vbox_fb->obj) in vbox_user_framebuffer_destroy()
24 drm_gem_object_put_unlocked(vbox_fb->obj); in vbox_user_framebuffer_destroy()
105 struct vbox_framebuffer *vbox_fb, in vbox_framebuffer_init() argument
111 drm_helper_mode_fill_fb_struct(&vbox->ddev, &vbox_fb->base, mode_cmd); in vbox_framebuffer_init()
112 vbox_fb->obj = obj; in vbox_framebuffer_init()
113 ret = drm_framebuffer_init(&vbox->ddev, &vbox_fb->base, &vbox_fb_funcs); in vbox_framebuffer_init()
Dvbox_mode.c867 struct vbox_framebuffer *vbox_fb; in vbox_user_framebuffer_create() local
874 vbox_fb = kzalloc(sizeof(*vbox_fb), GFP_KERNEL); in vbox_user_framebuffer_create()
875 if (!vbox_fb) in vbox_user_framebuffer_create()
878 ret = vbox_framebuffer_init(vbox, vbox_fb, mode_cmd, obj); in vbox_user_framebuffer_create()
882 return &vbox_fb->base; in vbox_user_framebuffer_create()
885 kfree(vbox_fb); in vbox_user_framebuffer_create()
DMakefile3 vbox_drv.o vbox_fb.o vbox_hgsmi.o vbox_irq.o vbox_main.o \
Dvbox_drv.h156 struct vbox_framebuffer *vbox_fb,