Commit 1dee6a4d authored by Bastien Curutchet's avatar Bastien Curutchet Committed by Lee Jones

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: default avatarBastien Curutchet <bastien.curutchet@bootlin.com>
Link: https://lore.kernel.org/r/20240617143910.154546-5-bastien.curutchet@bootlin.comSigned-off-by: default avatarLee Jones <lee@kernel.org>
parent f51bc3ce
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment