mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
49f860bb5d
Previously we linked in the ISA DMA wrapper unconditionally. As there are very few users of this, it's better to make it conditional. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
10 lines
264 B
Makefile
10 lines
264 B
Makefile
#
|
|
# Makefile for the SuperH DMA specific kernel interface routines under Linux.
|
|
#
|
|
|
|
obj-y += dma-api.o
|
|
obj-$(CONFIG_ISA_DMA_API) += dma-isa.o
|
|
obj-$(CONFIG_SYSFS) += dma-sysfs.o
|
|
obj-$(CONFIG_SH_DMA) += dma-sh.o
|
|
obj-$(CONFIG_SH_DREAMCAST) += dma-pvr2.o dma-g2.o
|