19 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2obj-y := dma-buf.o dma-fence.o dma-fence-array.o dma-fence-chain.o \3 dma-fence-unwrap.o dma-resv.o4obj-$(CONFIG_DMABUF_HEAPS) += dma-heap.o5obj-$(CONFIG_DMABUF_HEAPS) += heaps/6obj-$(CONFIG_SYNC_FILE) += sync_file.o7obj-$(CONFIG_SW_SYNC) += sw_sync.o sync_debug.o8obj-$(CONFIG_UDMABUF) += udmabuf.o9obj-$(CONFIG_DMABUF_SYSFS_STATS) += dma-buf-sysfs-stats.o10 11dmabuf_selftests-y := \12 selftest.o \13 st-dma-fence.o \14 st-dma-fence-chain.o \15 st-dma-fence-unwrap.o \16 st-dma-resv.o17 18obj-$(CONFIG_DMABUF_SELFTESTS) += dmabuf_selftests.o19