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>
This commit is contained in:
Bastien Curutchet 2024-06-17 16:39:10 +02:00 committed by Lee Jones
parent f51bc3cedf
commit 1dee6a4d62

View 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);