lkml.org 
[lkml]   [2024]   [Feb]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH v2 10/30] pinctrl: nomadik: minimise indentation in probe
On Wed, Feb 28, 2024 at 12:28 PM Théo Lebrun <theo.lebrun@bootlin.com> wrote:

> nmk_pinctrl_probe() iterates over each GPIO block. Use an early
> conditional continue to skip to the next iteration rather than indent
> all the loop code block.
>
> Do not change code logic. The block is changed from:
>
> for (i = 0; i < NMK_MAX_BANKS; i++) {
> x = of_parse_phandle(...);
> if (x) {
> ... do work ...
> }
> }
>
> To:
>
> for (i = 0; i < NMK_MAX_BANKS; i++) {
> x = of_parse_phandle(...);
> if (!x)
> continue;
>
> ... do work ...
> }
>
> Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>

Patch applied!

Yours,
Linus Walleij

\
 
 \ /
  Last update: 2024-05-27 15:27    [W:0.264 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site