]> Git Repo - linux.git/commitdiff
drm/sun4i: Use drm_gem_fb_create()
authorNoralf Trønnes <[email protected]>
Sun, 24 Sep 2017 12:26:23 +0000 (14:26 +0200)
committerNoralf Trønnes <[email protected]>
Sun, 1 Oct 2017 15:03:55 +0000 (17:03 +0200)
drm_fb_cma_create() is just a wrapper around drm_gem_fb_create() now,
so use the function directly.

Cc: Maxime Ripard <[email protected]>
Signed-off-by: Noralf Trønnes <[email protected]>
Acked-by: Maxime Ripard <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/sun4i/sun4i_framebuffer.c

index 9872e0fc03b0ec44db0d3ac01c5106ec5d9d426f..2992f0a6b349dbbe62e97fb2accdd686a08899b8 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <drm/drm_atomic_helper.h>
 #include <drm/drm_fb_cma_helper.h>
+#include <drm/drm_gem_framebuffer_helper.h>
 #include <drm/drmP.h>
 
 #include "sun4i_drv.h"
@@ -28,7 +29,7 @@ static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
        .output_poll_changed    = sun4i_de_output_poll_changed,
        .atomic_check           = drm_atomic_helper_check,
        .atomic_commit          = drm_atomic_helper_commit,
-       .fb_create              = drm_fb_cma_create,
+       .fb_create              = drm_gem_fb_create,
 };
 
 struct drm_fbdev_cma *sun4i_framebuffer_init(struct drm_device *drm)
This page took 0.056296 seconds and 4 git commands to generate.