search for: pan_worker

Displaying 1 result from an estimated 1 matches for "pan_worker".

Did you mean: bar_worker
2024 Sep 26
1
[PATCH v5 79/80] drm/omapdrm: Remove struct drm_fb_helper from struct omap_fbdev.
...- > struct omap_fbdev { > - struct drm_fb_helper base; > + struct drm_device *dev; > bool ywrap_enabled; > > /* for deferred dmm roll when getting called in atomic ctx */ > @@ -41,7 +40,7 @@ static struct drm_fb_helper *get_fb(struct fb_info *fbi); > static void pan_worker(struct work_struct *work) > { > struct omap_fbdev *fbdev = container_of(work, struct omap_fbdev, work); > - struct drm_fb_helper *helper = &fbdev->base; > + struct drm_fb_helper *helper = fbdev->dev->fb_helper; > struct fb_info *fbi = helper->info; > str...