diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2017-09-24 08:26:18 -0400 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2017-10-01 11:00:55 -0400 |
commit | 503ad2e174cdb39d8bee74fab28fcc4ce7dd01b5 (patch) | |
tree | 66022aedc7a1f7e0e11c4b41edac714136cc85f8 | |
parent | ba22bf6785810d89496be1d5ee9b159cc9546560 (diff) |
drm/hisilicon/kirin: 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: Xinliang Liu <z.liuxinliang@hisilicon.com>
Cc: Rongrong Zou <zourongrong@gmail.com>
Cc: Xinwei Kong <kong.kongxinwei@hisilicon.com>
Cc: Chen Feng <puck.chen@hisilicon.com>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Xinliang Liu <z.liuxinliang@hisilicon.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: https://patchwork.freedesktop.org/patch/msgid/1506255985-61113-4-git-send-email-noralf@tronnes.org
-rw-r--r-- | drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c index e27352ca26c4..c19ab4f91ae7 100644 --- a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c +++ b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <drm/drmP.h> | 22 | #include <drm/drmP.h> |
23 | #include <drm/drm_gem_cma_helper.h> | 23 | #include <drm/drm_gem_cma_helper.h> |
24 | #include <drm/drm_fb_cma_helper.h> | 24 | #include <drm/drm_fb_cma_helper.h> |
25 | #include <drm/drm_gem_framebuffer_helper.h> | ||
25 | #include <drm/drm_atomic_helper.h> | 26 | #include <drm/drm_atomic_helper.h> |
26 | #include <drm/drm_crtc_helper.h> | 27 | #include <drm/drm_crtc_helper.h> |
27 | #include <drm/drm_of.h> | 28 | #include <drm/drm_of.h> |
@@ -56,7 +57,7 @@ static void kirin_fbdev_output_poll_changed(struct drm_device *dev) | |||
56 | } | 57 | } |
57 | 58 | ||
58 | static const struct drm_mode_config_funcs kirin_drm_mode_config_funcs = { | 59 | static const struct drm_mode_config_funcs kirin_drm_mode_config_funcs = { |
59 | .fb_create = drm_fb_cma_create, | 60 | .fb_create = drm_gem_fb_create, |
60 | .output_poll_changed = kirin_fbdev_output_poll_changed, | 61 | .output_poll_changed = kirin_fbdev_output_poll_changed, |
61 | .atomic_check = drm_atomic_helper_check, | 62 | .atomic_check = drm_atomic_helper_check, |
62 | .atomic_commit = drm_atomic_helper_commit, | 63 | .atomic_commit = drm_atomic_helper_commit, |