On 01/10/2016 06:14 PM, Gong Qianyu wrote:
> From: Gong Qianyu <qianyu.g...@freescale.com>
> 
> This patch fixes the following compile warning:
> drivers/spi/fsl_qspi.c: In function 'fsl_qspi_probe':
> drivers/spi/fsl_qspi.c:937:15:
>   warning: cast to pointer from integer of different size
>                                        [-Wint-to-pointer-cast]
>   priv->regs = (struct fsl_qspi_regs *)plat->reg_base;
>                ^
> Just make the cast explict.
> 
> Signed-off-by: Gong Qianyu <qianyu.g...@freescale.com>
> ---
> V4:
>  - Revise the commit message.
> V2-V3:
>  - No change.
> 
>  drivers/spi/fsl_qspi.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/spi/fsl_qspi.c b/drivers/spi/fsl_qspi.c
> index feec3e8..9f23c10 100644
> --- a/drivers/spi/fsl_qspi.c
> +++ b/drivers/spi/fsl_qspi.c
> @@ -936,7 +936,7 @@ static int fsl_qspi_probe(struct udevice *bus)
>  
>       dm_spi_bus->max_hz = plat->speed_hz;
>  
> -     priv->regs = (struct fsl_qspi_regs *)plat->reg_base;

The reg_base is u32. Is it always correct on 64-bit SoC?

> +     priv->regs = (struct fsl_qspi_regs *)(unsigned long)plat->reg_base;

How about (struct fsl_qspi_regs *)(uintptr_t)plat->reg_base?

York


_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to