Skip to content

Commit 1dee6a4

Browse files
bastien-curutchetlag-linaro
authored andcommitted
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>
1 parent f51bc3c commit 1dee6a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/leds/leds-pca9532.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ static int pca9532_set_blink(struct led_classdev *led_cdev,
248248

249249
if (*delay_on == 0 && *delay_off == 0) {
250250
/* led subsystem ask us for a blink rate */
251-
*delay_on = 1000;
252-
*delay_off = 1000;
251+
*delay_on = 500;
252+
*delay_off = 500;
253253
}
254254

255255
err = pca9532_update_hw_blink(led, *delay_on, *delay_off);

0 commit comments

Comments
 (0)