2023-06-13 03:01:16

by GONG, Ruiqi

[permalink] [raw]
Subject: [PATCH] clk: renesas: r8a7778: remove checker warnings: x | !y

Eliminate the following Sparse reports when building with C=1:

drivers/clk/renesas/clk-r8a7778.c:85:52: warning: dubious: x | !y
drivers/clk/renesas/clk-r8a7778.c:87:50: warning: dubious: x | !y

Signed-off-by: GONG, Ruiqi <[email protected]>
---
drivers/clk/renesas/clk-r8a7778.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/clk/renesas/clk-r8a7778.c b/drivers/clk/renesas/clk-r8a7778.c
index 797556259370..ad1a50f3b0cd 100644
--- a/drivers/clk/renesas/clk-r8a7778.c
+++ b/drivers/clk/renesas/clk-r8a7778.c
@@ -81,11 +81,11 @@ static void __init r8a7778_cpg_clocks_init(struct device_node *np)

BUG_ON(!(mode & BIT(19)));

- cpg_mode_rates = (!!(mode & BIT(18)) << 2) |
- (!!(mode & BIT(12)) << 1) |
- (!!(mode & BIT(11)));
- cpg_mode_divs = (!!(mode & BIT(2)) << 1) |
- (!!(mode & BIT(1)));
+ cpg_mode_rates = (mode & BIT(18) ? BIT(2) : 0) |
+ (mode & BIT(12) ? BIT(1) : 0) |
+ (mode & BIT(11) ? BIT(0) : 0);
+ cpg_mode_divs = (mode & BIT(2) ? BIT(1) : 0) |
+ (mode & BIT(1) ? BIT(0) : 0);

num_clks = of_property_count_strings(np, "clock-output-names");
if (num_clks < 0) {
--
2.25.1



2023-06-13 08:30:51

by Geert Uytterhoeven

[permalink] [raw]
Subject: Re: [PATCH] clk: renesas: r8a7778: remove checker warnings: x | !y

Hi Gong,

On Tue, Jun 13, 2023 at 4:50 AM GONG, Ruiqi <[email protected]> wrote:
> Eliminate the following Sparse reports when building with C=1:
>
> drivers/clk/renesas/clk-r8a7778.c:85:52: warning: dubious: x | !y
> drivers/clk/renesas/clk-r8a7778.c:87:50: warning: dubious: x | !y
>
> Signed-off-by: GONG, Ruiqi <[email protected]>

Thanks for your patch!

Looks like sparse needs to be taught the "|" is not used in a boolean
context here?

See also
https://lore.kernel.org/r/CAMuHMdXGG2xu+nXJt6CSTfV6aM=U=hMW+DiDgP3RhOw8+O8y=A@mail.gmail.com

> --- a/drivers/clk/renesas/clk-r8a7778.c
> +++ b/drivers/clk/renesas/clk-r8a7778.c
> @@ -81,11 +81,11 @@ static void __init r8a7778_cpg_clocks_init(struct device_node *np)
>
> BUG_ON(!(mode & BIT(19)));
>
> - cpg_mode_rates = (!!(mode & BIT(18)) << 2) |
> - (!!(mode & BIT(12)) << 1) |
> - (!!(mode & BIT(11)));
> - cpg_mode_divs = (!!(mode & BIT(2)) << 1) |
> - (!!(mode & BIT(1)));
> + cpg_mode_rates = (mode & BIT(18) ? BIT(2) : 0) |
> + (mode & BIT(12) ? BIT(1) : 0) |
> + (mode & BIT(11) ? BIT(0) : 0);
> + cpg_mode_divs = (mode & BIT(2) ? BIT(1) : 0) |
> + (mode & BIT(1) ? BIT(0) : 0);
>
> num_clks = of_property_count_strings(np, "clock-output-names");
> if (num_clks < 0) {

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected]

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

2023-06-14 10:23:28

by David Laight

[permalink] [raw]
Subject: RE: [PATCH] clk: renesas: r8a7778: remove checker warnings: x | !y

From: GONG, Ruiqi
> Sent: 13 June 2023 03:54
>
> Eliminate the following Sparse reports when building with C=1:
>
> drivers/clk/renesas/clk-r8a7778.c:85:52: warning: dubious: x | !y
> drivers/clk/renesas/clk-r8a7778.c:87:50: warning: dubious: x | !y
>
> Signed-off-by: GONG, Ruiqi <[email protected]>
> ---
> drivers/clk/renesas/clk-r8a7778.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/clk/renesas/clk-r8a7778.c b/drivers/clk/renesas/clk-r8a7778.c
> index 797556259370..ad1a50f3b0cd 100644
> --- a/drivers/clk/renesas/clk-r8a7778.c
> +++ b/drivers/clk/renesas/clk-r8a7778.c
> @@ -81,11 +81,11 @@ static void __init r8a7778_cpg_clocks_init(struct device_node *np)
>
> BUG_ON(!(mode & BIT(19)));
>
> - cpg_mode_rates = (!!(mode & BIT(18)) << 2) |
> - (!!(mode & BIT(12)) << 1) |
> - (!!(mode & BIT(11)));

Try just adding a << 0 on the last line.

Recent gcc and clang optimise the code to 'shift + and'.

David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)