aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorludovic.desroches@atmel.com <ludovic.desroches@atmel.com>2014-12-01 09:35:06 -0500
committerUlf Hansson <ulf.hansson@linaro.org>2014-12-02 05:00:31 -0500
commit1c7615b90cbcfb10ef5da291b85774cb2ab2cc76 (patch)
tree117e32456f29705e1874881706f65d38fb7a7502 /drivers/mmc
parent903101a83949d6fc77c092cef07e9c1e10c07e46 (diff)
mmc: atmel-mci: remove useless DMA stuff for non-dt devices
All devices with a DMA controller are DT compliant and legacy support has been removed. For those reasons, some DMA stuff is useless. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/atmel-mci.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
index de2287c5bf3a..f187e75d449c 100644
--- a/drivers/mmc/host/atmel-mci.c
+++ b/drivers/mmc/host/atmel-mci.c
@@ -2274,17 +2274,9 @@ static void atmci_cleanup_slot(struct atmel_mci_slot *slot,
2274 2274
2275static bool atmci_configure_dma(struct atmel_mci *host) 2275static bool atmci_configure_dma(struct atmel_mci *host)
2276{ 2276{
2277 struct mci_platform_data *pdata;
2278 dma_cap_mask_t mask;
2279
2280 if (host == NULL) 2277 if (host == NULL)
2281 return false; 2278 return false;
2282 2279
2283 pdata = host->pdev->dev.platform_data;
2284
2285 dma_cap_zero(mask);
2286 dma_cap_set(DMA_SLAVE, mask);
2287
2288 host->dma.chan = dma_request_slave_channel(&host->pdev->dev, "rxtx"); 2280 host->dma.chan = dma_request_slave_channel(&host->pdev->dev, "rxtx");
2289 if (!host->dma.chan) { 2281 if (!host->dma.chan) {
2290 dev_warn(&host->pdev->dev, "no DMA channel available\n"); 2282 dev_warn(&host->pdev->dev, "no DMA channel available\n");