Re: [U-Boot] [PATCH 1/4] spi: fsl_qspi: Fix issues on arm64

2016-05-18 Thread Yao Yuan
On 05/18/2016 12:32 PM, York Sun wrote: > On 03/14/2016 11:45 PM, Yuan Yao wrote: > > From: Yuan Yao > > > > The address value and size value get from dts "reg" property have type > > of u64 on arm64. > > If we assign those values to "u32" variables, driver can't work correctly. > > Converting the

Re: [U-Boot] [PATCH 1/4] spi: fsl_qspi: Fix issues on arm64

2016-05-17 Thread York Sun
On 03/14/2016 11:45 PM, Yuan Yao wrote: > From: Yuan Yao > > The address value and size value get from dts "reg" property have type > of u64 on arm64. > If we assign those values to "u32" variables, driver can't work correctly. > Converting the type of those variables to fdt_xxx_t. > > Signed-of

[U-Boot] [PATCH 1/4] spi: fsl_qspi: Fix issues on arm64

2016-03-14 Thread Yuan Yao
From: Yuan Yao The address value and size value get from dts "reg" property have type of u64 on arm64. If we assign those values to "u32" variables, driver can't work correctly. Converting the type of those variables to fdt_xxx_t. Signed-off-by: Yuan Yao Signed-off-by: Prabhakar Kushwaha Signe