From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chin Liang See Date: Tue, 6 Sep 2016 17:41:56 +0800 Subject: [U-Boot] [PATCH 07/11] arm: socfpga: sysmgr: Fix casting warning when enabling ARM64 In-Reply-To: <24fff019-151f-002c-3a07-a7d612f38562@denx.de> References: <1471878163-3598-1-git-send-email-clsee@altera.com> <1471878163-3598-8-git-send-email-clsee@altera.com> <24fff019-151f-002c-3a07-a7d612f38562@denx.de> Message-ID: <1473154916.4366.24.camel@altera.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 2016-09-05 at 18:02 +0200, Marek Vasut wrote: > On 08/22/2016 05:02 PM, Chin Liang See wrote: > > Fix casting warning to pointer from integer of different size > > when enabling ARM64 support > > What sort of error did you observe ? The warning is triggered as ARM64 has build flag -Wpointer-to-int-cast and similar. Here is the build error log arch/arm/mach-socfpga/system_manager.c: In function sysmgr_pinmux_init: arch/arm/mach-socfpga/system_manager.c:59:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] uint32_t regs = (uint32_t)&sysmgr_regs ->emacio[0]; ^ In file included from arch/arm/mach-socfpga/system_manager.c:8:0: ./arch/arm/include/asm/io.h:78:29: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] #define __arch_putl(v,a) (*(volatile unsigned int *)(a) = (v)) ^ Thanks Chin Liang > > > Signed-off-by: Chin Liang See > > Cc: Marek Vasut > > Cc: Dinh Nguyen > > Cc: Ley Foon Tan > > --- > > arch/arm/mach-socfpga/system_manager.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/arch/arm/mach-socfpga/system_manager.c b/arch/arm/mach > > -socfpga/system_manager.c > > index 75a65f3..89161bd 100644 > > --- a/arch/arm/mach-socfpga/system_manager.c > > +++ b/arch/arm/mach-socfpga/system_manager.c > > @@ -56,7 +56,7 @@ static void populate_sysmgr_fpgaintf_module(void) > > */ > > void sysmgr_pinmux_init(void) > > { > > - uint32_t regs = (uint32_t)&sysmgr_regs->emacio[0]; > > + uint32_t *regs = (uint32_t *)&sysmgr_regs->emacio[0]; > > const u8 *sys_mgr_init_table; > > unsigned int len; > > int i; > > > >