mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
01357a5a45
Move the code from the inline functions into exported functions. Signed-off-by: Christian König <christian.koenig@amd.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20220518135844.3338-3-christian.koenig@amd.com
19 lines
577 B
Makefile
19 lines
577 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y := dma-buf.o dma-fence.o dma-fence-array.o dma-fence-chain.o \
|
|
dma-fence-unwrap.o dma-resv.o
|
|
obj-$(CONFIG_DMABUF_HEAPS) += dma-heap.o
|
|
obj-$(CONFIG_DMABUF_HEAPS) += heaps/
|
|
obj-$(CONFIG_SYNC_FILE) += sync_file.o
|
|
obj-$(CONFIG_SW_SYNC) += sw_sync.o sync_debug.o
|
|
obj-$(CONFIG_UDMABUF) += udmabuf.o
|
|
obj-$(CONFIG_DMABUF_SYSFS_STATS) += dma-buf-sysfs-stats.o
|
|
|
|
dmabuf_selftests-y := \
|
|
selftest.o \
|
|
st-dma-fence.o \
|
|
st-dma-fence-chain.o \
|
|
st-dma-fence-unwrap.o \
|
|
st-dma-resv.o
|
|
|
|
obj-$(CONFIG_DMABUF_SELFTESTS) += dmabuf_selftests.o
|