diff options
author | Andreas Pokorny <andreas.pokorny@canonical.com> | 2014-08-08 12:40:56 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-09-03 09:36:52 +0400 |
commit | 47c1296829505d119d7d58dd23d39cc5db344f12 (patch) | |
tree | ddb7ef1e51da975954cd9feeb81352238c2319a9 /drivers/gpu/drm/qxl/Makefile | |
parent | 058e9f5c8236ad740ab984588b507758e5feee6d (diff) | |
download | linux-47c1296829505d119d7d58dd23d39cc5db344f12.tar.xz |
drm/qxl: enables gem prime helpers for qxl using dummy driver callbacks
As there should not be any other virtual device that might share buffers,
the callbacks remain empty stubs. Still prime can be used to transfer buffers
between processes that use qxl.
Signed-off-by: Andreas Pokorny <andreas.pokorny@canonical.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/qxl/Makefile')
-rw-r--r-- | drivers/gpu/drm/qxl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/qxl/Makefile b/drivers/gpu/drm/qxl/Makefile index ac0d74852e11..bacc4aff1201 100644 --- a/drivers/gpu/drm/qxl/Makefile +++ b/drivers/gpu/drm/qxl/Makefile @@ -4,6 +4,6 @@ ccflags-y := -Iinclude/drm -qxl-y := qxl_drv.o qxl_kms.o qxl_display.o qxl_ttm.o qxl_fb.o qxl_object.o qxl_gem.o qxl_cmd.o qxl_image.o qxl_draw.o qxl_debugfs.o qxl_irq.o qxl_dumb.o qxl_ioctl.o qxl_release.o +qxl-y := qxl_drv.o qxl_kms.o qxl_display.o qxl_ttm.o qxl_fb.o qxl_object.o qxl_gem.o qxl_cmd.o qxl_image.o qxl_draw.o qxl_debugfs.o qxl_irq.o qxl_dumb.o qxl_ioctl.o qxl_release.o qxl_prime.o obj-$(CONFIG_DRM_QXL)+= qxl.o |