diff mbox

[U-Boot] mmc: bcm2835: fix 64-bit build warning

Message ID 1458186144-31091-1-git-send-email-swarren@wwwdotorg.org
State Accepted
Commit a481a15600ac607d2266a88c92ff571c9c573041
Delegated to: Tom Rini
Headers show

Commit Message

Stephen Warren March 17, 2016, 3:42 a.m. UTC
Fixes:
drivers/mmc/bcm2835_sdhci.c: In function ‘bcm2835_sdhci_init’:
drivers/mmc/bcm2835_sdhci.c:181:17: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
---
 drivers/mmc/bcm2835_sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini March 27, 2016, 10:25 p.m. UTC | #1
On Wed, Mar 16, 2016 at 09:42:24PM -0600, Stephen Warren wrote:

> Fixes:
> drivers/mmc/bcm2835_sdhci.c: In function ‘bcm2835_sdhci_init’:
> drivers/mmc/bcm2835_sdhci.c:181:17: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> 
> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/drivers/mmc/bcm2835_sdhci.c b/drivers/mmc/bcm2835_sdhci.c
index 227d2dfa2efd..680b754af63e 100644
--- a/drivers/mmc/bcm2835_sdhci.c
+++ b/drivers/mmc/bcm2835_sdhci.c
@@ -178,7 +178,7 @@  int bcm2835_sdhci_init(u32 regbase, u32 emmc_freq)
 
 	host = &bcm_host->host;
 	host->name = "bcm2835_sdhci";
-	host->ioaddr = (void *)regbase;
+	host->ioaddr = (void *)(unsigned long)regbase;
 	host->quirks = SDHCI_QUIRK_BROKEN_VOLTAGE | SDHCI_QUIRK_BROKEN_R1B |
 		SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_NO_HISPD_BIT;
 	host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;