Commit e44f0801 authored by Noralf Trønnes's avatar Noralf Trønnes

drm/gem-fb-helper: drm_gem_fbdev_fb_create() make funcs optional

Make the drm_framebuffer_funcs argument optional for drivers that
don't need to set the dirty callback.
Signed-off-by: default avatarNoralf Trønnes <noralf@tronnes.org>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20171115142001.45358-2-noralf@tronnes.org
parent c94bedab
...@@ -272,7 +272,8 @@ EXPORT_SYMBOL_GPL(drm_gem_fb_prepare_fb); ...@@ -272,7 +272,8 @@ EXPORT_SYMBOL_GPL(drm_gem_fb_prepare_fb);
* @sizes: fbdev size description * @sizes: fbdev size description
* @pitch_align: Optional pitch alignment * @pitch_align: Optional pitch alignment
* @obj: GEM object backing the framebuffer * @obj: GEM object backing the framebuffer
* @funcs: vtable to be used for the new framebuffer object * @funcs: Optional vtable to be used for the new framebuffer object when the
* dirty callback is needed.
* *
* This function creates a framebuffer from a &drm_fb_helper_surface_size * This function creates a framebuffer from a &drm_fb_helper_surface_size
* description for use in the &drm_fb_helper_funcs.fb_probe callback. * description for use in the &drm_fb_helper_funcs.fb_probe callback.
...@@ -300,6 +301,9 @@ drm_gem_fbdev_fb_create(struct drm_device *dev, ...@@ -300,6 +301,9 @@ drm_gem_fbdev_fb_create(struct drm_device *dev,
if (obj->size < mode_cmd.pitches[0] * mode_cmd.height) if (obj->size < mode_cmd.pitches[0] * mode_cmd.height)
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
if (!funcs)
funcs = &drm_gem_fb_funcs;
return drm_gem_fb_alloc(dev, &mode_cmd, &obj, 1, funcs); return drm_gem_fb_alloc(dev, &mode_cmd, &obj, 1, funcs);
} }
EXPORT_SYMBOL(drm_gem_fbdev_fb_create); EXPORT_SYMBOL(drm_gem_fbdev_fb_create);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment