]> Git Repo - linux.git/commitdiff
drm/fb-helper: add DRM_FB_HELPER_DEFAULT_OPS for fb_ops
authorStefan Christ <[email protected]>
Thu, 29 Sep 2016 20:48:37 +0000 (22:48 +0200)
committerDaniel Vetter <[email protected]>
Tue, 4 Oct 2016 06:23:16 +0000 (08:23 +0200)
The define DRM_FB_HELPER_DEFAULT_OPS provides the drm_fb_helper default
implementations for functions in struct fb_ops. A drm driver can use it
like:

    static struct fb_ops drm_fbdev_cma_ops = {
        .owner          = THIS_MODULE,
        DRM_FB_HELPER_DEFAULT_OPS,
        /* driver specific implementations */
    };

Suggested-by: Daniel Vetter <[email protected]>
Signed-off-by: Stefan Christ <[email protected]>
Reviewed-by: Gustavo Padovan <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
include/drm/drm_fb_helper.h

index e19458dd1a43d53b0aad1f4b0db10890d2792db7..3c5f5992b96afe8b1fc9fa5a7be5094e6cada166 100644 (file)
@@ -217,6 +217,19 @@ struct drm_fb_helper {
        bool delayed_hotplug;
 };
 
+/**
+ * @DRM_FB_HELPER_DEFAULT_OPS:
+ *
+ * Helper define to register default implementations of drm_fb_helper
+ * functions. To be used in struct fb_ops of drm drivers.
+ */
+#define DRM_FB_HELPER_DEFAULT_OPS \
+       .fb_check_var   = drm_fb_helper_check_var, \
+       .fb_set_par     = drm_fb_helper_set_par, \
+       .fb_setcmap     = drm_fb_helper_setcmap, \
+       .fb_blank       = drm_fb_helper_blank, \
+       .fb_pan_display = drm_fb_helper_pan_display
+
 #ifdef CONFIG_DRM_FBDEV_EMULATION
 void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
                           const struct drm_fb_helper_funcs *funcs);
This page took 0.054146 seconds and 4 git commands to generate.