Message ID | 20221226123630.6515-8-pali@kernel.org (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | Resend LED patches | expand |
On Mon, 26 Dec 2022, Pali Rohár wrote: > From: Marek Behún <kabel@kernel.org> > > The default color of each LED before driver probe (255, 255, 255). > Initialize multi_intensity to this value, so that it corresponds to the > reality. > > Signed-off-by: Marek Behún <kabel@kernel.org> > Fixes: 089381b27abe ("leds: initial support for Turris Omnia LEDs") > Reviewed-by: Pali Rohár <pali@kernel.org> Reviewed-by: Lee Jones <lee@kernel.org> > --- > drivers/leds/leds-turris-omnia.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/leds/leds-turris-omnia.c b/drivers/leds/leds-turris-omnia.c > index bb7af9e59ad6..71340dec492a 100644 > --- a/drivers/leds/leds-turris-omnia.c > +++ b/drivers/leds/leds-turris-omnia.c > @@ -131,10 +131,13 @@ static int omnia_led_register(struct i2c_client *client, struct omnia_led *led, > } > > led->subled_info[0].color_index = LED_COLOR_ID_RED; > + led->subled_info[0].intensity = 255; > led->subled_info[0].channel = 0; > led->subled_info[1].color_index = LED_COLOR_ID_GREEN; > + led->subled_info[1].intensity = 255; > led->subled_info[1].channel = 1; > led->subled_info[2].color_index = LED_COLOR_ID_BLUE; > + led->subled_info[2].intensity = 255; > led->subled_info[2].channel = 2; > > led->mc_cdev.subled_info = led->subled_info; > -- > 2.20.1 >
diff --git a/drivers/leds/leds-turris-omnia.c b/drivers/leds/leds-turris-omnia.c index bb7af9e59ad6..71340dec492a 100644 --- a/drivers/leds/leds-turris-omnia.c +++ b/drivers/leds/leds-turris-omnia.c @@ -131,10 +131,13 @@ static int omnia_led_register(struct i2c_client *client, struct omnia_led *led, } led->subled_info[0].color_index = LED_COLOR_ID_RED; + led->subled_info[0].intensity = 255; led->subled_info[0].channel = 0; led->subled_info[1].color_index = LED_COLOR_ID_GREEN; + led->subled_info[1].intensity = 255; led->subled_info[1].channel = 1; led->subled_info[2].color_index = LED_COLOR_ID_BLUE; + led->subled_info[2].intensity = 255; led->subled_info[2].channel = 2; led->mc_cdev.subled_info = led->subled_info;