aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoralf Trønnes <noralf@tronnes.org>2017-09-24 08:26:21 -0400
committerNoralf Trønnes <noralf@tronnes.org>2017-10-01 11:02:53 -0400
commit365c38517827b8efd4009b5221fff320775a5f83 (patch)
treedf1583e7a74b3efae38feba1e0a165d289a220ab
parent98f3eac5a13323958b32f17f32b66c0fd8841085 (diff)
drm/rcar-du: 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-7-git-send-email-noralf@tronnes.org
-rw-r--r--drivers/gpu/drm/rcar-du/rcar_du_kms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.c b/drivers/gpu/drm/rcar-du/rcar_du_kms.c
index 7278b9703c15..566d1a948c8f 100644
--- a/drivers/gpu/drm/rcar-du/rcar_du_kms.c
+++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.c
@@ -18,6 +18,7 @@
18#include <drm/drm_crtc_helper.h> 18#include <drm/drm_crtc_helper.h>
19#include <drm/drm_fb_cma_helper.h> 19#include <drm/drm_fb_cma_helper.h>
20#include <drm/drm_gem_cma_helper.h> 20#include <drm/drm_gem_cma_helper.h>
21#include <drm/drm_gem_framebuffer_helper.h>
21 22
22#include <linux/of_graph.h> 23#include <linux/of_graph.h>
23#include <linux/wait.h> 24#include <linux/wait.h>
@@ -213,7 +214,7 @@ rcar_du_fb_create(struct drm_device *dev, struct drm_file *file_priv,
213 } 214 }
214 } 215 }
215 216
216 return drm_fb_cma_create(dev, file_priv, mode_cmd); 217 return drm_gem_fb_create(dev, file_priv, mode_cmd);
217} 218}
218 219
219static void rcar_du_output_poll_changed(struct drm_device *dev) 220static void rcar_du_output_poll_changed(struct drm_device *dev)