linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] drivers/auxdisplay: TRIVIAl removed unnessecary braces from if statements
       [not found] <20180923143344.2709-1-benmoore422@gmail.com>
@ 2018-09-23 15:33 ` Miguel Ojeda
  2018-09-23 17:12   ` Geert Uytterhoeven
  0 siblings, 1 reply; 2+ messages in thread
From: Miguel Ojeda @ 2018-09-23 15:33 UTC (permalink / raw)
  To: Ben Moore; +Cc: trivial, willy, Geert Uytterhoeven, linux-kernel

Hi Ben,

On Sun, Sep 23, 2018 at 4:33 PM,  <benmoore422@gmail.com> wrote:
> From: Ben Moore <benmoore422@gmail.com>
>
> removed braches from single line if statements
>
> Signed-off-by: Ben Moore <benmoore422@gmail.com>
> ---
>  drivers/auxdisplay/panel.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/auxdisplay/panel.c b/drivers/auxdisplay/panel.c
> index 3b25a643058c..0e4a7260dcc0 100644
> --- a/drivers/auxdisplay/panel.c
> +++ b/drivers/auxdisplay/panel.c
> @@ -695,11 +695,10 @@ static void lcd_send_serial(int byte)
>         for (bit = 0; bit < 8; bit++) {
>                 clear_bit(LCD_BIT_CL, bits);    /* CLK low */
>                 panel_set_bits();
> -               if (byte & 1) {
> +               if (byte & 1)
>                         set_bit(LCD_BIT_DA, bits);
> -               } else {
> +               else
>                         clear_bit(LCD_BIT_DA, bits);
> -               }
>
>                 panel_set_bits();
>                 udelay(2);  /* maintain the data during 2 us before CLK up */
> @@ -1025,9 +1024,8 @@ static void lcd_init(void)
>                         lcd.pins.rs = DEFAULT_LCD_PIN_RS;
>                 if (lcd.pins.rw == PIN_NOT_SET)
>                         lcd.pins.rw = DEFAULT_LCD_PIN_RW;
> -       } else {
> +       } else
>                 charlcd->ops = &charlcd_tilcd_ops;
> -       }
>
>         if (lcd.pins.bl == PIN_NOT_SET)
>                 lcd.pins.bl = DEFAULT_LCD_PIN_BL;
> --
> 2.11.0
>

A few more things (Ben's first patch, sent to me first in private):

  * The subject could be better as:

    [PATCH TRIVIAL] auxdisplay: remove unnecessary braces

    i.e. TRIVIAL inside the [...] (which will not appear in the Git
commit message); unnessecary -> unnecessary; drivers/auxdisplay ->
auxdisplay

  * The commit message body ("removed braches from single line if
statements") is redundant with the title of the commit (and has the
typo "braches"). You could say, instead, say something like "No
functional changes."; or if you tested that it generates the same
object file, something like "Tested, no codegen changes."; etc.

  * You can remove the "From:" line.

  * I think Willy uses the w@1wt.eu address nowadays.

  * It would be great if you can try to look for similar instances in
drivers/auxdisplay/* and send a v2 of the patch (you would need to say
in the subject "[PATCH v2 TRIVIAL]").

  * Don't forget to Cc the general linux-kernel mailing list, please!

Thank again for the patch and welcome to the kernel!

[Jiri, I can pick the v2 of this in my tree if you prefer.]

Cheers,
Miguel

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] drivers/auxdisplay: TRIVIAl removed unnessecary braces from if statements
  2018-09-23 15:33 ` [PATCH] drivers/auxdisplay: TRIVIAl removed unnessecary braces from if statements Miguel Ojeda
@ 2018-09-23 17:12   ` Geert Uytterhoeven
  0 siblings, 0 replies; 2+ messages in thread
From: Geert Uytterhoeven @ 2018-09-23 17:12 UTC (permalink / raw)
  To: Miguel Ojeda Sandonis
  Cc: benmoore422, Jiri Kosina, Willy Tarreau, Geert Uytterhoeven,
	Linux Kernel Mailing List

Hi Ben,

On Sun, Sep 23, 2018 at 5:33 PM Miguel Ojeda
<miguel.ojeda.sandonis@gmail.com> wrote:
> On Sun, Sep 23, 2018 at 4:33 PM,  <benmoore422@gmail.com> wrote:
> > From: Ben Moore <benmoore422@gmail.com>
> >
> > removed braches from single line if statements
> >
> > Signed-off-by: Ben Moore <benmoore422@gmail.com>

Thanks for you patch!

> > --- a/drivers/auxdisplay/panel.c
> > +++ b/drivers/auxdisplay/panel.c
> > @@ -695,11 +695,10 @@ static void lcd_send_serial(int byte)
> >         for (bit = 0; bit < 8; bit++) {
> >                 clear_bit(LCD_BIT_CL, bits);    /* CLK low */
> >                 panel_set_bits();
> > -               if (byte & 1) {
> > +               if (byte & 1)
> >                         set_bit(LCD_BIT_DA, bits);
> > -               } else {
> > +               else
> >                         clear_bit(LCD_BIT_DA, bits);
> > -               }
> >
> >                 panel_set_bits();
> >                 udelay(2);  /* maintain the data during 2 us before CLK up */
> > @@ -1025,9 +1024,8 @@ static void lcd_init(void)
> >                         lcd.pins.rs = DEFAULT_LCD_PIN_RS;
> >                 if (lcd.pins.rw == PIN_NOT_SET)
> >                         lcd.pins.rw = DEFAULT_LCD_PIN_RW;
> > -       } else {
> > +       } else
> >                 charlcd->ops = &charlcd_tilcd_ops;
> > -       }

Please keep braces for single-statement branches if the other branch needs
the braces.

I think running scripts/checkpatch.pl on your patch would tell you about that
rule.

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-23 17:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20180923143344.2709-1-benmoore422@gmail.com>
2018-09-23 15:33 ` [PATCH] drivers/auxdisplay: TRIVIAl removed unnessecary braces from if statements Miguel Ojeda
2018-09-23 17:12   ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).