aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoralf Trønnes <noralf@tronnes.org>2017-09-24 08:26:22 -0400
committerNoralf Trønnes <noralf@tronnes.org>2017-10-01 11:03:22 -0400
commit5d43aa7a7c8f0bb48679eec066271af29c127e36 (patch)
tree7aeadfd168c2a2553b4500b963e8a51112d2c4f3
parent365c38517827b8efd4009b5221fff320775a5f83 (diff)
drm/shmobile: Use drm_gem_fb_create()
drm_fb_cma_create() is just a wrapper around drm_gem_fb_create() now, so use the function directly. Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Noralf Trønnes <noralf@tronnes.org> Reviewed-by: Eric Anholt <eric@anholt.net> Link: https://patchwork.freedesktop.org/patch/msgid/1506255985-61113-8-git-send-email-noralf@tronnes.org
-rw-r--r--drivers/gpu/drm/shmobile/shmob_drm_kms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/shmobile/shmob_drm_kms.c b/drivers/gpu/drm/shmobile/shmob_drm_kms.c
index 388a0fc13564..d36919b14da7 100644
--- a/drivers/gpu/drm/shmobile/shmob_drm_kms.c
+++ b/drivers/gpu/drm/shmobile/shmob_drm_kms.c
@@ -16,6 +16,7 @@
16#include <drm/drm_crtc_helper.h> 16#include <drm/drm_crtc_helper.h>
17#include <drm/drm_fb_cma_helper.h> 17#include <drm/drm_fb_cma_helper.h>
18#include <drm/drm_gem_cma_helper.h> 18#include <drm/drm_gem_cma_helper.h>
19#include <drm/drm_gem_framebuffer_helper.h>
19 20
20#include <video/sh_mobile_meram.h> 21#include <video/sh_mobile_meram.h>
21 22
@@ -131,7 +132,7 @@ shmob_drm_fb_create(struct drm_device *dev, struct drm_file *file_priv,
131 } 132 }
132 } 133 }
133 134
134 return drm_fb_cma_create(dev, file_priv, mode_cmd); 135 return drm_gem_fb_create(dev, file_priv, mode_cmd);
135} 136}
136 137
137static const struct drm_mode_config_funcs shmob_drm_mode_config_funcs = { 138static const struct drm_mode_config_funcs shmob_drm_mode_config_funcs = {