mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 00:19:36 +00:00

PTDMA driver is the AMD DMA driver, and newer AMD platforms support newer DMA engines. Hence, move the current drivers to the AMD directory. This would also mean that future driver submissions to the AMD DMA driver will also land in the AMD-specific directory. Reviewed-by: Raju Rangoju <Raju.Rangoju@amd.com> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com> Link: https://lore.kernel.org/r/20241025095931.726018-2-Basavaraj.Natikar@amd.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
11 lines
203 B
Makefile
11 lines
203 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# AMD Passthru DMA driver
|
|
#
|
|
|
|
obj-$(CONFIG_AMD_PTDMA) += ptdma.o
|
|
|
|
ptdma-objs := ptdma-dev.o ptdma-dmaengine.o ptdma-debugfs.o
|
|
|
|
ptdma-$(CONFIG_PCI) += ptdma-pci.o
|