Fwd: [PATCH] m68k: q40: Add space around '='

hanyu001@208suo.com posted 1 patch 2 years, 7 months ago
arch/m68k/q40/q40ints.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Fwd: [PATCH] m68k: q40: Add space around '='
Posted by hanyu001@208suo.com 2 years, 7 months ago


This patch fixes the checkpatch.pl error:

./arch/m68k/q40/q40ints.c:135: ERROR: spaces required around that '=' 
(ctx:VxV)
./arch/m68k/q40/q40ints.c:137: ERROR: spaces required around that '=' 
(ctx:VxV)
./arch/m68k/q40/q40ints.c:138: ERROR: spaces required around that '=' 
(ctx:VxV)

Signed-off-by: maqimei <2433033762@qq.com>
---
  arch/m68k/q40/q40ints.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c
index 127d7ec..bede94a 100644
--- a/arch/m68k/q40/q40ints.c
+++ b/arch/m68k/q40/q40ints.c
@@ -132,10 +132,10 @@ static irqreturn_t q40_timer_int(int irq, void 
*dev_id)
  {
      ql_ticks = ql_ticks ? 0 : 1;
      if (sound_ticks) {
-        unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
+        unsigned char sval = (sound_ticks & 1) ? 128-SVOL : 128+SVOL;
          sound_ticks--;
-        *DAC_LEFT=sval;
-        *DAC_RIGHT=sval;
+        *DAC_LEFT = sval;
+        *DAC_RIGHT = sval;
      }

      if (!ql_ticks) {
Re: [PATCH] m68k: q40: Add space around '='
Posted by Geert Uytterhoeven 2 years, 6 months ago
Hi Hanyu,

On Thu, Jul 13, 2023 at 8:40 AM <hanyu001@208suo.com> wrote:
> This patch fixes the checkpatch.pl error:
>
> ./arch/m68k/q40/q40ints.c:135: ERROR: spaces required around that '='
> (ctx:VxV)
> ./arch/m68k/q40/q40ints.c:137: ERROR: spaces required around that '='
> (ctx:VxV)
> ./arch/m68k/q40/q40ints.c:138: ERROR: spaces required around that '='
> (ctx:VxV)
>
> Signed-off-by: maqimei <2433033762@qq.com>

Thanks for your patch!

But obviously you forgot to run scripts/checkpatch.pl on your own patch:

    ERROR: patch seems to be corrupt (line wrapped?)
    #81: FILE: arch/m68k/q40/q40ints.c:131:
    *dev_id)

    ERROR: Missing Signed-off-by: line by nominal patch author
'hanyu001@208suo.com'

> Fwd: [PATCH] m68k: q40: Add space around '='

Please do not forward patches, as this breaks the tooling.
The proper way to handle this is to add your own Signed-off-by tag,
and submit it yourself, cfr.
https://elixir.bootlin.com/linux/latest/source/Documentation/process/submitting-patches.rst#L434

> index 127d7ec..bede94a 100644
> --- a/arch/m68k/q40/q40ints.c
> +++ b/arch/m68k/q40/q40ints.c
> @@ -132,10 +132,10 @@ static irqreturn_t q40_timer_int(int irq, void
> *dev_id)
>   {
>       ql_ticks = ql_ticks ? 0 : 1;
>       if (sound_ticks) {
> -        unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
> +        unsigned char sval = (sound_ticks & 1) ? 128-SVOL : 128+SVOL;
>           sound_ticks--;
> -        *DAC_LEFT=sval;
> -        *DAC_RIGHT=sval;
> +        *DAC_LEFT = sval;
> +        *DAC_RIGHT = sval;
>       }
>
>       if (!ql_ticks) {

This patch is whitespace-damaged and fails to apply.

Please test your patches by running scripts/checkpatch.pl, emailing
them to yourself, and trying to apply them.

Thanks!

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-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