[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAMuHMdUkJrsug-hKkM_f+0xxrPHBQfw_3WB2FhMM=yAYzRn1Eg@mail.gmail.com>
Date: Tue, 29 Jul 2025 09:08:32 +0200
From: Geert Uytterhoeven <geert@...ux-m68k.org>
To: Dishank Jogi <jogidishank503@...il.com>
Cc: linux-m68k@...ts.linux-m68k.org, linux-kernel@...r.kernel.org,
darshanrathod475@...il.com
Subject: Re: [PATCH] zorro: fix checkpatch error by avoiding assignment in if-statement.
Hi Dishank,
On Mon, 28 Jul 2025 at 11:34, Dishank Jogi <jogidishank503@...il.com> wrote:
> These changes improve code readability and bring the file
> in line with the Linux kernel coding style.
>
> No functional changes.
>
> Signed-off-by: Dishank Jogi <jogidishank503@...il.com>
Thanks for your patch!
> --- a/drivers/zorro/gen-devlist.c
> +++ b/drivers/zorro/gen-devlist.c
> @@ -44,7 +44,8 @@ main(void)
>
> while (fgets(line, sizeof(line)-1, stdin)) {
> lino++;
> - if ((c = strchr(line, '\n')))
> + c = strchr(line, '\n')
As Christophe pointed out, this line lacks a semicolon.
Please do not submit untested patches.
> + if (c)
> *c = 0;
> if (!line[0] || line[0] == '#')
> continue;
> @@ -68,7 +69,8 @@ main(void)
> fprintf(devf, "\tPRODUCT(%s,%s,\"", manuf, line+1);
> pq(devf, c);
> fputs("\")\n", devf);
> - } else goto err;
> + } else
> + goto err;
This does not comply with Linux kernel coding style: please use braces
in both branches.
However, in this case I'd rather invert the logic, remove the braces,
and reduce indentation for the big block:
if (strlen(line) <= 5 || line[5] != ' ')
goto err;
[...]
> break;
> default:
> goto err;
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