Displaying 1 result from an estimated 1 matches for "omap_fbdev_fb_destroy".
2024 Sep 26
1
[PATCH v5 79/80] drm/omapdrm: Remove struct drm_fb_helper from struct omap_fbdev.
...; + if (drm_can_sleep())
> pan_worker(&fbdev->work);
> - } else {
> - struct omap_drm_private *priv = helper->dev->dev_private;
> + else
> queue_work(priv->wq, &fbdev->work);
> - }
>
> return 0;
>
> @@ -92,7 +92,6 @@ static void omap_fbdev_fb_destroy(struct fb_info *info)
> struct drm_fb_helper *helper = info->par;
> struct drm_framebuffer *fb = helper->fb;
> struct drm_gem_object *bo = drm_gem_fb_get_obj(fb, 0);
> - struct omap_fbdev *fbdev = to_omap_fbdev(helper);
>
> DBG();
>
> @@ -104,7 +103,7...