summaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorBastien Curutchet <bastien.curutchet@bootlin.com>2024-06-17 16:39:10 +0200
committerLee Jones <lee@kernel.org>2024-06-26 18:04:37 +0200
commit1dee6a4d62a987c17d7ec02b6fc059b2b196a250 (patch)
treec4845e5b44d6d73087690691c26caef317a5f2c9 /drivers/leds
parentleds: pca9532: Explicitly disable hardware blink when PWM1 is unavailable (diff)
downloadlinux-1dee6a4d62a987c17d7ec02b6fc059b2b196a250.tar.xz
linux-1dee6a4d62a987c17d7ec02b6fc059b2b196a250.zip
leds: pca9532: Change default blinking frequency to 1Hz
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>
Diffstat (limited to 'drivers/leds')
-rw-r--r--drivers/leds/leds-pca9532.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c
index c7a4f677ed4d..9f3fac66a11c 100644
--- a/drivers/leds/leds-pca9532.c
+++ b/drivers/leds/leds-pca9532.c
@@ -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);