Message ID | 20240711120129.100248-5-bastien.curutchet@bootlin.com |
---|---|
State | New |
Headers | show |
Series | leds: pca9532: Use hardware for blinking LEDs | expand |
diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c index 673d4d5b62bb..266f6e5001be 100644 --- a/drivers/leds/leds-pca9532.c +++ b/drivers/leds/leds-pca9532.c @@ -247,8 +247,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);
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> --- drivers/leds/leds-pca9532.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)