From: Marek Vasut Date: Tue, 2 Oct 2018 22:44:37 +0000 (+0200) Subject: mmc: tmio: Pass full address to tmio_sd_addr_is_dmaable() X-Git-Tag: v2018.11-rc2~8^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92bde154ec91222c4d9a766052ab6dcdbf0cf410;p=platform%2Fkernel%2Fu-boot.git mmc: tmio: Pass full address to tmio_sd_addr_is_dmaable() Pass the entire source data pointer to tmio_sd_addr_is_dmaable() so we don't have to apply casts throughout the code. Signed-off-by: Marek Vasut Cc: Masahiro Yamada --- diff --git a/drivers/mmc/tmio-common.c b/drivers/mmc/tmio-common.c index b311b80..6b21941 100644 --- a/drivers/mmc/tmio-common.c +++ b/drivers/mmc/tmio-common.c @@ -372,8 +372,10 @@ static int tmio_sd_dma_xfer(struct udevice *dev, struct mmc_data *data) } /* check if the address is DMA'able */ -static bool tmio_sd_addr_is_dmaable(unsigned long addr) +static bool tmio_sd_addr_is_dmaable(const char *src) { + uintptr_t addr = (uintptr_t)src; + if (!IS_ALIGNED(addr, TMIO_SD_DMA_MINALIGN)) return false; @@ -486,7 +488,7 @@ int tmio_sd_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, if (data) { /* use DMA if the HW supports it and the buffer is aligned */ if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL && - tmio_sd_addr_is_dmaable((long)data->src)) + tmio_sd_addr_is_dmaable(data->src)) ret = tmio_sd_dma_xfer(dev, data); else ret = tmio_sd_pio_xfer(dev, data);