diff options
author | Vinod Koul <vkoul@kernel.org> | 2020-11-09 14:24:50 +0530 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-11-24 21:42:07 +0530 |
commit | 5d0c3533a19f48e5e7e73806a3e4b29cd4364130 (patch) | |
tree | 4160c5fdfd60b8453f6ab35c2f95254de6163f47 /drivers/dma/qcom/Makefile | |
parent | e7bbb7acabf47d74672e0e314bed4d452d2097b4 (diff) |
dmaengine: qcom: Add GPI dma driver
This controller provides DMAengine capabilities for a variety of peripheral
buses such as I2C, UART, and SPI. By using GPI dmaengine driver, bus
drivers can use a standardize interface that is protocol independent to
transfer data between memory and peripheral.
Link: https://lore.kernel.org/r/20201109085450.24843-4-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/qcom/Makefile')
-rw-r--r-- | drivers/dma/qcom/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/qcom/Makefile b/drivers/dma/qcom/Makefile index 346e643fbb6d..50f1e7014693 100644 --- a/drivers/dma/qcom/Makefile +++ b/drivers/dma/qcom/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_QCOM_ADM) += qcom_adm.o obj-$(CONFIG_QCOM_BAM_DMA) += bam_dma.o +obj-$(CONFIG_QCOM_GPI_DMA) += gpi.o obj-$(CONFIG_QCOM_HIDMA_MGMT) += hdma_mgmt.o hdma_mgmt-objs := hidma_mgmt.o hidma_mgmt_sys.o obj-$(CONFIG_QCOM_HIDMA) += hdma.o |