diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2016-05-01 07:25:27 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-05-14 09:24:45 +0300 |
commit | 570d0176296f0d17c4b5ab206ad4a4bc027b863b (patch) | |
tree | 1c8d62592e8c332a5de3247d3dfcb65df8a83ff9 /drivers/dma/qcom/Makefile | |
parent | d1615ca2e085222025118793b7b4af2cf4867b6e (diff) | |
download | linux-570d0176296f0d17c4b5ab206ad4a4bc027b863b.tar.xz |
dmaengine: qcom_hidma: add debugfs hooks
Add debugfs hooks for debugging the execution behavior of the DMA
channel. The debugfs hooks get initialized by the probe function and
uninitialized by the remove function.
A stats file is created in debugfs. The stats file will show the
information about each HIDMA channel as well as each asynchronous job
queued and completed at a given time.
Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/qcom/Makefile')
-rw-r--r-- | drivers/dma/qcom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/qcom/Makefile b/drivers/dma/qcom/Makefile index 6bf9267e6387..4bfc38b45220 100644 --- a/drivers/dma/qcom/Makefile +++ b/drivers/dma/qcom/Makefile @@ -2,4 +2,4 @@ obj-$(CONFIG_QCOM_BAM_DMA) += bam_dma.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 -hdma-objs := hidma_ll.o hidma.o +hdma-objs := hidma_ll.o hidma.o hidma_dbg.o |