summaryrefslogtreecommitdiff
path: root/common/splash_source.c
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2020-12-07 11:18:51 +0300
committerAnatolij Gustschin <agust@denx.de>2021-02-20 00:17:10 +0300
commita0b74acb9b4a21405e7441c808d538a460a3678f (patch)
treec3acc364193744b12bae7b5d9c08038ceee3194c /common/splash_source.c
parent766927a7595a6f18fef460a06fdac370fd9e02cf (diff)
downloadu-boot-a0b74acb9b4a21405e7441c808d538a460a3678f.tar.xz
common: splash_source: fix -Wint-to-pointer-cast warning
Fix -Wint-to-pointer-cast warning common/splash_source.c: In function 'splash_load_raw': common/splash_source.c:100:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 100 | bmp_hdr = (struct bmp_header *)bmp_load_addr; | ^ common/splash_source.c: In function 'splash_sf_read_raw': common/splash_source.c:39:47: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 39 | return spi_flash_read(sf, offset, read_size, (void *)bmp_load_addr); | ^ Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/splash_source.c')
-rw-r--r--common/splash_source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/splash_source.c b/common/splash_source.c
index d7f179e3ea..3cf926d91a 100644
--- a/common/splash_source.c
+++ b/common/splash_source.c
@@ -37,7 +37,7 @@ static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
return -ENODEV;
}
- return spi_flash_read(sf, offset, read_size, (void *)bmp_load_addr);
+ return spi_flash_read(sf, offset, read_size, (void *)(uintptr_t)bmp_load_addr);
}
#else
static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
@@ -98,7 +98,7 @@ static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr)
if (res < 0)
return res;
- bmp_hdr = (struct bmp_header *)bmp_load_addr;
+ bmp_hdr = (struct bmp_header *)(uintptr_t)bmp_load_addr;
bmp_size = le32_to_cpu(bmp_hdr->file_size);
if (bmp_load_addr + bmp_size >= gd->start_addr_sp)