projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98f3eac
)
drm/rcar-du: Use drm_gem_fb_create()
author
Noralf Trønnes
<noralf@tronnes.org>
Sun, 24 Sep 2017 12:26:21 +0000
(14:26 +0200)
committer
Noralf Trønnes
<noralf@tronnes.org>
Sun, 1 Oct 2017 15:02:53 +0000
(17:02 +0200)
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
drivers/gpu/drm/rcar-du/rcar_du_kms.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/rcar-du/rcar_du_kms.c
b/drivers/gpu/drm/rcar-du/rcar_du_kms.c
index
7278b97
..
566d1a9
100644
(file)
--- a/
drivers/gpu/drm/rcar-du/rcar_du_kms.c
+++ b/
drivers/gpu/drm/rcar-du/rcar_du_kms.c
@@
-18,6
+18,7
@@
#include <drm/drm_crtc_helper.h>
#include <drm/drm_fb_cma_helper.h>
#include <drm/drm_gem_cma_helper.h>
+#include <drm/drm_gem_framebuffer_helper.h>
#include <linux/of_graph.h>
#include <linux/wait.h>
@@
-213,7
+214,7
@@
rcar_du_fb_create(struct drm_device *dev, struct drm_file *file_priv,
}
}
- return drm_
fb_cma
_create(dev, file_priv, mode_cmd);
+ return drm_
gem_fb
_create(dev, file_priv, mode_cmd);
}
static void rcar_du_output_poll_changed(struct drm_device *dev)