Displaying 1 result from an estimated 1 matches for "ywrap_en".
Did you mean:
wrap_in
2024 Sep 26
1
[PATCH v5 79/80] drm/omapdrm: Remove struct drm_fb_helper from struct omap_fbdev.
...rm/drm_fourcc.h>
> #include <drm/drm_framebuffer.h>
> #include <drm/drm_gem_framebuffer_helper.h>
> +#include <drm/drm_managed.h>
> #include <drm/drm_util.h>
>
> #include "omap_drv.h"
> @@ -26,10 +27,8 @@ module_param_named(ywrap, ywrap_enabled, bool, 0644);
> * fbdev funcs, to implement legacy fbdev interface on top of drm driver
> */
>
> -#define to_omap_fbdev(x) container_of(x, struct omap_fbdev, base)
> -
> struct omap_fbdev {
> - struct drm_fb_helper base;
> + struct drm_device *dev;
> bo...