diff options
author | Qiang Yu <yuq825@gmail.com> | 2019-10-10 22:01:50 +0800 |
---|---|---|
committer | Qiang Yu <yuq825@gmail.com> | 2019-10-17 23:41:03 +0800 |
commit | d61dd248ddadf85b3222b3f63c3d268fcc24beb4 (patch) | |
tree | 86b66859da2e01641750d01351302addee258397 /drivers/gpu/drm/lima/Makefile | |
parent | ce6eb0253cbacdf250cf894e34ca405d8c9e79da (diff) |
drm/lima: use drm_gem_shmem_helpers
Do not need to maintain our own shmem memory management
code as drm_gem_shmem_helpers provides it. And we can
also benifit from the work of others with shared code.
This is also a preparation for implementing buffer madv.
Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Qiang Yu <yuq825@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191010140152.17747-2-yuq825@gmail.com
Diffstat (limited to 'drivers/gpu/drm/lima/Makefile')
-rw-r--r-- | drivers/gpu/drm/lima/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/lima/Makefile b/drivers/gpu/drm/lima/Makefile index 38cc70281ba5..a85444b0a1d4 100644 --- a/drivers/gpu/drm/lima/Makefile +++ b/drivers/gpu/drm/lima/Makefile @@ -13,9 +13,7 @@ lima-y := \ lima_vm.o \ lima_sched.o \ lima_ctx.o \ - lima_gem_prime.o \ lima_dlbu.o \ - lima_bcast.o \ - lima_object.o + lima_bcast.o obj-$(CONFIG_DRM_LIMA) += lima.o |