]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
leds: pca9532: Change default blinking frequency to 1Hz
authorBastien Curutchet <bastien.curutchet@bootlin.com>
Mon, 17 Jun 2024 14:39:10 +0000 (16:39 +0200)
committerLee Jones <lee@kernel.org>
Wed, 26 Jun 2024 16:04:37 +0000 (17:04 +0100)
Default blinking period is set to 2s. This is too long to be handled by
the hardware (maximum is 1.69s).

Set the default blinking period to 1s to match what is done in the
other LED drivers.

Signed-off-by: Bastien Curutchet <bastien.curutchet@bootlin.com>
Link: https://lore.kernel.org/r/20240617143910.154546-5-bastien.curutchet@bootlin.com
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/leds/leds-pca9532.c

index c7a4f677ed4d8cea9d437ac063a67a45e3d15224..9f3fac66a11c7f69bc1eeccdba3159ce1dffe07c 100644 (file)
@@ -248,8 +248,8 @@ static int pca9532_set_blink(struct led_classdev *led_cdev,
 
        if (*delay_on == 0 && *delay_off == 0) {
                /* led subsystem ask us for a blink rate */
-               *delay_on = 1000;
-               *delay_off = 1000;
+               *delay_on = 500;
+               *delay_off = 500;
        }
 
        err = pca9532_update_hw_blink(led, *delay_on, *delay_off);