[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAMuHMdXGG2xu+nXJt6CSTfV6aM=U=hMW+DiDgP3RhOw8+O8y=A@mail.gmail.com>
Date: Tue, 13 Jun 2023 09:38:20 +0200
From: Geert Uytterhoeven <geert@...ux-m68k.org>
To: "GONG, Ruiqi" <gongruiqi@...weicloud.com>
Cc: Linus Walleij <linus.walleij@...aro.org>,
linux-renesas-soc@...r.kernel.org, linux-gpio@...r.kernel.org,
linux-kernel@...r.kernel.org, gongruiqi1@...wei.com,
linux-sparse@...r.kernel.org
Subject: Re: [PATCH] pinctrl: renesas: remove checker warnings: x | !y
Hi Gong,
On Tue, Jun 13, 2023 at 4:13 AM GONG, Ruiqi <gongruiqi@...weicloud.com> wrote:
> Eliminate the following Sparse reports when building with C=1:
>
> drivers/pinctrl/renesas/pinctrl-rzn1.c:187:52: warning: dubious: x | !y
> drivers/pinctrl/renesas/pinctrl-rzn1.c:193:52: warning: dubious: x | !y
>
> Signed-off-by: GONG, Ruiqi <gongruiqi@...weicloud.com>
Thanks for your patch!
Looks like sparse needs to be taught the "|" is not used in a boolean
context here?
> --- a/drivers/pinctrl/renesas/pinctrl-rzn1.c
> +++ b/drivers/pinctrl/renesas/pinctrl-rzn1.c
> @@ -184,13 +184,15 @@ static void rzn1_hw_set_lock(struct rzn1_pinctrl *ipctl, u8 lock, u8 value)
> * address | 1.
> */
> if (lock & LOCK_LEVEL1) {
> - u32 val = ipctl->lev1_protect_phys | !(value & LOCK_LEVEL1);
> + u32 val = ipctl->lev1_protect_phys |
> + (value & LOCK_LEVEL1 ? 0 : 1);
>
> writel(val, &ipctl->lev1->status_protect);
> }
>
> if (lock & LOCK_LEVEL2) {
> - u32 val = ipctl->lev2_protect_phys | !(value & LOCK_LEVEL2);
> + u32 val = ipctl->lev2_protect_phys |
> + (value & LOCK_LEVEL2 ? 0 : 1);
>
> writel(val, &ipctl->lev2->status_protect);
> }
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@...ux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
Powered by blists - more mailing lists