[PATCH 2/4] spi: spi-fsl-qspi: Fix casting warnings
Hardevsinh Palaniya
hardevsinh.palaniya at siliconsignals.io
Fri Sep 27 23:11:54 PDT 2024
Hi Frank,
Thanks for the suggestions
>> if (!q->devtype_data->little_endian)
>> - mask = (u32)cpu_to_be32(mask);
>> + mask =(__force u32)cpu_to_be32(mask);
>
>Most this kind warning report the real problem. I don't suggest fix as it
I’m curious about the types of real problems that might arise
>the 'if branch' should be removed.
>
>and simple
>
>return read_poll_timeout(qspi_readl, reg, !(reg & mask), delay_us, timeout_us,
> q, base);
>
>qspi_readl() already handle endian problem.
I agree , it is a good approach since qspi_readl() already handles the endian issue
I will change it to your approach.
>
>Frank
Best Regards,
Hardev
________________________________________
From: Frank Li <Frank.li at nxp.com>
Sent: Friday, September 27, 2024 9:10 PM
To: Hardevsinh Palaniya <hardevsinh.palaniya at siliconsignals.io>
Cc: linux-spi at vger.kernel.org <linux-spi at vger.kernel.org>; olteanv at gmail.com <olteanv at gmail.com>; broonie at kernel.org <broonie at kernel.org>; Han Xu <han.xu at nxp.com>; Shawn Guo <shawnguo at kernel.org>; Sascha Hauer <s.hauer at pengutronix.de>; Pengutronix Kernel Team <kernel at pengutronix.de>; Fabio Estevam <festevam at gmail.com>; Haibo Chen <haibo.chen at nxp.com>; Yogesh Gaur <yogeshgaur.83 at gmail.com>; imx at lists.linux.dev <imx at lists.linux.dev>; linux-kernel at vger.kernel.org <linux-kernel at vger.kernel.org>; linux-arm-kernel at lists.infradead.org <linux-arm-kernel at lists.infradead.org>
Subject: Re: [PATCH 2/4] spi: spi-fsl-qspi: Fix casting warnings
CAUTION: This email originated from outside the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
On Fri, Sep 27, 2024 at 06:58:33PM +0530, Hardevsinh Palaniya wrote:
> Sparse warnings:
>
> drivers/spi/spi-fsl-qspi.c:635:25: warning: cast from restricted __be32
>
> Signed-off-by: Hardevsinh Palaniya <hardevsinh.palaniya at siliconsignals.io>
> ---
> drivers/spi/spi-fsl-qspi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/spi/spi-fsl-qspi.c b/drivers/spi/spi-fsl-qspi.c
> index 79bac30e79af..e4a2a6049e33 100644
> --- a/drivers/spi/spi-fsl-qspi.c
> +++ b/drivers/spi/spi-fsl-qspi.c
> @@ -632,7 +632,7 @@ static int fsl_qspi_readl_poll_tout(struct fsl_qspi *q, void __iomem *base,
> u32 reg;
>
> if (!q->devtype_data->little_endian)
> - mask = (u32)cpu_to_be32(mask);
> + mask =(__force u32)cpu_to_be32(mask);
Most this kind warning report the real problem. I don't suggest fix as it
the 'if branch' should be removed.
and simple
return read_poll_timeout(qspi_readl, reg, !(reg & mask), delay_us, timeout_us,
q, base);
qspi_readl() already handle endian problem.
Frank
>
> return readl_poll_timeout(base, reg, !(reg & mask), delay_us,
> timeout_us);
> --
> 2.43.0
>
More information about the linux-arm-kernel
mailing list