From: Rob Herring Date: Tue, 17 Mar 2015 20:46:38 +0000 (-0500) Subject: sdhci: fix warnings on 64-bit builds X-Git-Tag: v2015.04-rc5~66^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3c1fcb770b046c04eab25963ab2c427dff725875;p=u-boot sdhci: fix warnings on 64-bit builds Change addresses to unsigned long to be compatible with 64-bit builds. Regardless of fixing warnings, the device is still only 32-bit capable. Signed-off-by: Rob Herring Cc: Pantelis Antoniou --- diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index 1f8917b1ce..5332e61cae 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -194,13 +194,13 @@ static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd, #ifdef CONFIG_MMC_SDMA if (data->flags == MMC_DATA_READ) - start_addr = (unsigned int)data->dest; + start_addr = (unsigned long)data->dest; else - start_addr = (unsigned int)data->src; + start_addr = (unsigned long)data->src; if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && (start_addr & 0x7) != 0x0) { is_aligned = 0; - start_addr = (unsigned int)aligned_buffer; + start_addr = (unsigned long)aligned_buffer; if (data->flags != MMC_DATA_READ) memcpy(aligned_buffer, data->src, trans_bytes); }