Skip to content

Commit

Permalink
mmc: atmel-mci: remove useless DMA stuff for non-dt devices
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ludovic.desroches@atmel.com authored and Ulf Hansson committed Dec 2, 2014
1 parent 903101a commit 1c7615b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions drivers/mmc/host/atmel-mci.c
Original file line number Diff line number Diff line change
Expand Up @@ -2274,17 +2274,9 @@ static void atmci_cleanup_slot(struct atmel_mci_slot *slot,

static bool atmci_configure_dma(struct atmel_mci *host)
{
struct mci_platform_data *pdata;
dma_cap_mask_t mask;

if (host == NULL)
return false;

pdata = host->pdev->dev.platform_data;

dma_cap_zero(mask);
dma_cap_set(DMA_SLAVE, mask);

host->dma.chan = dma_request_slave_channel(&host->pdev->dev, "rxtx");
if (!host->dma.chan) {
dev_warn(&host->pdev->dev, "no DMA channel available\n");
Expand Down

0 comments on commit 1c7615b

Please sign in to comment.