]> git.baikalelectronics.ru Git - kernel.git/commitdiff
leds: pca963: fix misleading indentation
authorPavel Machek <pavel@ucw.cz>
Mon, 26 Sep 2022 21:16:37 +0000 (23:16 +0200)
committerPavel Machek <pavel@ucw.cz>
Mon, 26 Sep 2022 21:16:37 +0000 (23:16 +0200)
I'm getting warnings:

/tmp/next/build/drivers/leds/leds-pca963x.c: In function 'pca963x_register_leds':
/tmp/next/build/drivers/leds/leds-pca963x.c:355:3: error: this 'if' clause does not guard...
+[-Werror=misleading-indentation]
  355 |   if (hw_blink)
      |   ^~
/tmp/next/build/drivers/leds/leds-pca963x.c:357:4: note: ...this statement, but the latter is
+misleadingly indented as if it were guarded by the 'if'
  357 |    led->blinking = false;
      |    ^~~
cc1: all warnings being treated as errors

Fix the indentation to make them go away.

Signed-off-by: Pavel Machek <pavel@ucw.cz>
drivers/leds/leds-pca963x.c

index d8d866bcda19f5a04707953059e92e84395528d5..a7e052c1db5315cdbf0343b3f4082ba11fdeb06a 100644 (file)
@@ -354,7 +354,7 @@ static int pca963x_register_leds(struct i2c_client *client,
                led->led_cdev.brightness_set_blocking = pca963x_led_set;
                if (hw_blink)
                        led->led_cdev.blink_set = pca963x_blink_set;
-                       led->blinking = false;
+               led->blinking = false;
 
                init_data.fwnode = child;
                /* for backwards compatibility */