Commit 1215c025 authored by Chunyan Zhang's avatar Chunyan Zhang Committed by Ulf Hansson

mmc: sdhci: fix an issue of mixing different types

Fix an issue reported by sparse, since mixed types of parameters are
used on calling dmaengine_prep_slave_sg().

Fixes: 36e1da441fec (mmc: sdhci: add support for using external DMA devices)
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarChunyan Zhang <zhang.chunyan@linaro.org>
Reviewed-by: default avatarNathan Chancellor <natechancellor@gmail.com>
Acked-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20200120033223.897-1-zhang.chunyan@linaro.orgSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 6fac4a3c
...@@ -1201,6 +1201,7 @@ static int sdhci_external_dma_setup(struct sdhci_host *host, ...@@ -1201,6 +1201,7 @@ static int sdhci_external_dma_setup(struct sdhci_host *host,
struct mmc_command *cmd) struct mmc_command *cmd)
{ {
int ret, i; int ret, i;
enum dma_transfer_direction dir;
struct dma_async_tx_descriptor *desc; struct dma_async_tx_descriptor *desc;
struct mmc_data *data = cmd->data; struct mmc_data *data = cmd->data;
struct dma_chan *chan; struct dma_chan *chan;
...@@ -1234,8 +1235,8 @@ static int sdhci_external_dma_setup(struct sdhci_host *host, ...@@ -1234,8 +1235,8 @@ static int sdhci_external_dma_setup(struct sdhci_host *host,
if (sg_cnt <= 0) if (sg_cnt <= 0)
return -EINVAL; return -EINVAL;
desc = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len, dir = data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
mmc_get_dma_dir(data), desc = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len, dir,
DMA_PREP_INTERRUPT | DMA_CTRL_ACK); DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
if (!desc) if (!desc)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment