From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from zimbra2.kalray.eu ([92.103.151.219]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jRX30-0001ED-Cw for barebox@lists.infradead.org; Thu, 23 Apr 2020 08:17:28 +0000 From: Clement Leger Date: Thu, 23 Apr 2020 10:17:07 +0200 Message-Id: <20200423081712.4022-3-cleger@kalray.eu> In-Reply-To: <20200423081712.4022-1-cleger@kalray.eu> References: <20200423081712.4022-1-cleger@kalray.eu> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH v2 2/6] common: elf: fix warning on 32 bits architectures To: Sascha Hauer , barebox@lists.infradead.org Cc: Clement Leger When pointers are 32 bits wide and we cast a potentially 64 bits value in it, the compiler will yield an error. Cast that value first into a phys_addr_t to match the architecture pointer size and then in a void *. Signed-off-by: Clement Leger --- common/elf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/elf.c b/common/elf.c index d64de401c..55f5bc645 100644 --- a/common/elf.c +++ b/common/elf.c @@ -47,7 +47,7 @@ static void elf_release_regions(struct elf_image *elf) static int load_elf_phdr_segment(struct elf_image *elf, void *src, void *phdr) { - void *dst = (void *) elf_phdr_p_paddr(elf, phdr); + void *dst = (void *) (phys_addr_t) elf_phdr_p_paddr(elf, phdr); int ret; u64 p_filesz = elf_phdr_p_filesz(elf, phdr); u64 p_memsz = elf_phdr_p_memsz(elf, phdr); -- 2.17.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox