From a90a73cc0d58a388d0bb612a0228b5fda277e57f Mon Sep 17 00:00:00 2001 From: Gong Qianyu Date: Thu, 30 Jul 2015 14:07:12 +0800 Subject: [PATCH] spl: Fix compile warning for arm64 Make the cast explicit for "warning: cast to pointer from integer of different size". Signed-off-by: Gong Qianyu --- common/spl/spl_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index 494f683b0a..ce58c5824f 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -44,7 +44,7 @@ static int mmc_load_image_raw_sector(struct mmc *mmc, unsigned long sector) /* Read the header too to avoid extra memcpy */ count = mmc->block_dev.block_read(0, sector, image_size_sectors, - (void *)spl_image.load_addr); + (void *)(ulong)spl_image.load_addr); debug("read %x sectors to %x\n", image_size_sectors, spl_image.load_addr); -- 2.39.2