diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2019-08-19 11:59:27 +0200 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2019-08-19 19:09:46 +0200 |
commit | 2989f6451084aed3f8cc9992477f7a9bf57a3716 (patch) | |
tree | f14b0e6feff554f35a848ac10ab9177461eefd4d /drivers/dma-buf/Makefile | |
parent | dma-buf: Introduce selftesting framework (diff) | |
download | linux-2989f6451084aed3f8cc9992477f7a9bf57a3716.tar.xz linux-2989f6451084aed3f8cc9992477f7a9bf57a3716.zip |
dma-buf: Add selftests for dma-fence
Exercise the dma-fence API exported to drivers.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20190819095928.32091-2-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/dma-buf/Makefile')
-rw-r--r-- | drivers/dma-buf/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/dma-buf/Makefile b/drivers/dma-buf/Makefile index b5ae122a9349..03479da06422 100644 --- a/drivers/dma-buf/Makefile +++ b/drivers/dma-buf/Makefile @@ -5,5 +5,8 @@ obj-$(CONFIG_SYNC_FILE) += sync_file.o obj-$(CONFIG_SW_SYNC) += sw_sync.o sync_debug.o obj-$(CONFIG_UDMABUF) += udmabuf.o -dmabuf_selftests-y := selftest.o +dmabuf_selftests-y := \ + selftest.o \ + st-dma-fence.o + obj-$(CONFIG_DMABUF_SELFTESTS) += dmabuf_selftests.o |