diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-12-29 12:21:19 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-01-13 13:18:40 -0500 |
commit | ef9d2a92334a27f4fb183ca1259744303564cc1b (patch) | |
tree | ece301dcc30a2a6c9e389cb24fe0c1e316c0e345 /drivers/dma/mxs-dma.c | |
parent | 029a40e97d0db269f4a7fc02b0f29f627f628309 (diff) |
dmaengine: mxs-dma: Declare slave capabilities for the generic code
Since ecc19d17868be9c ("dmaengine: Add a warning for drivers not using the
generic slave caps retrieval") the following warning is observed:
[ 0.113023] ------------[ cut here ]------------
[ 0.113053] WARNING: CPU: 0 PID: 1 at drivers/dma/dmaengine.c:830 dma_async_device_register+0x2a0/0x4c8()
[ 0.113063] this driver doesn't support generic slave capabilities reporting
Declare the slave capabilities to avoid such warning.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/mxs-dma.c')
-rw-r--r-- | drivers/dma/mxs-dma.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dma/mxs-dma.c b/drivers/dma/mxs-dma.c index 599ffb5b7848..829ec686dac3 100644 --- a/drivers/dma/mxs-dma.c +++ b/drivers/dma/mxs-dma.c | |||
@@ -848,6 +848,10 @@ static int __init mxs_dma_probe(struct platform_device *pdev) | |||
848 | mxs_dma->dma_device.device_pause = mxs_dma_pause_chan; | 848 | mxs_dma->dma_device.device_pause = mxs_dma_pause_chan; |
849 | mxs_dma->dma_device.device_resume = mxs_dma_resume_chan; | 849 | mxs_dma->dma_device.device_resume = mxs_dma_resume_chan; |
850 | mxs_dma->dma_device.device_terminate_all = mxs_dma_terminate_all; | 850 | mxs_dma->dma_device.device_terminate_all = mxs_dma_terminate_all; |
851 | mxs_dma->dma_device.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES); | ||
852 | mxs_dma->dma_device.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES); | ||
853 | mxs_dma->dma_device.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV); | ||
854 | mxs_dma->dma_device.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST; | ||
851 | mxs_dma->dma_device.device_issue_pending = mxs_dma_enable_chan; | 855 | mxs_dma->dma_device.device_issue_pending = mxs_dma_enable_chan; |
852 | 856 | ||
853 | ret = dma_async_device_register(&mxs_dma->dma_device); | 857 | ret = dma_async_device_register(&mxs_dma->dma_device); |