diff options
author | Mugunthan V N <mugunthanvnm@ti.com> | 2016-02-15 15:31:37 +0530 |
---|---|---|
committer | Jagan Teki <jteki@openedev.com> | 2016-02-23 16:14:45 +0530 |
commit | a0594cefb7682dc0c32084d088b3ac0a85ed7395 (patch) | |
tree | fa70110c909901dc0c8258168e982d5b03c5beb0 /drivers/dma/Makefile | |
parent | 18c61e95714f4a18f1a206369fc187639d9845e1 (diff) | |
download | u-boot-a0594cefb7682dc0c32084d088b3ac0a85ed7395.tar.gz u-boot-a0594cefb7682dc0c32084d088b3ac0a85ed7395.tar.xz u-boot-a0594cefb7682dc0c32084d088b3ac0a85ed7395.zip |
dm: implement a DMA uclass
Implement a DMA uclass so that the devices like ethernet, spi,
mmc etc can offload the data transfers from/to the device and
memory.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'drivers/dma/Makefile')
-rw-r--r-- | drivers/dma/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index f95fe70a99..39b78b2a3d 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile @@ -5,6 +5,8 @@ # SPDX-License-Identifier: GPL-2.0+ # +obj-$(CONFIG_DMA) += dma-uclass.o + obj-$(CONFIG_FSLDMAFEC) += MCD_tasksInit.o MCD_dmaApi.o MCD_tasks.o obj-$(CONFIG_APBH_DMA) += apbh_dma.o obj-$(CONFIG_FSL_DMA) += fsl_dma.o |