mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	leds: fix brightness changing when software blinking is active
The following sequence: echo timer >/sys/class/leds/<name>/trigger echo 1 >/sys/class/leds/<name>/brightness should change the ON brightness for blinking. The function led_set_brightness() was mistakenly initiating the delayed blink stop procedure, which resulted in no blinking with the timer trigger still active. This patch fixes the problem by changing led_set_brightness() to not initiate the delayed blink stop when brightness is not 0. CC: Richard Purdie <rpurdie@rpsys.net> CC: Kyungmin Park <kyungmin.park@samsung.com> CC: linux-leds@vger.kernel.org CC: linux-kernel@vger.kernel.org Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com> Signed-off-by: Stas Sergeev <stsp@users.sourceforge.net> Signed-off-by: Bryan Wu <cooloney@gmail.com>
This commit is contained in:
		
							parent
							
								
									7ff6b23251
								
							
						
					
					
						commit
						76931edd54
					
				
					 2 changed files with 8 additions and 2 deletions
				
			
		| 
						 | 
					@ -121,6 +121,11 @@ static void led_timer_function(unsigned long data)
 | 
				
			||||||
	brightness = led_get_brightness(led_cdev);
 | 
						brightness = led_get_brightness(led_cdev);
 | 
				
			||||||
	if (!brightness) {
 | 
						if (!brightness) {
 | 
				
			||||||
		/* Time to switch the LED on. */
 | 
							/* Time to switch the LED on. */
 | 
				
			||||||
 | 
							if (led_cdev->delayed_set_value) {
 | 
				
			||||||
 | 
								led_cdev->blink_brightness =
 | 
				
			||||||
 | 
										led_cdev->delayed_set_value;
 | 
				
			||||||
 | 
								led_cdev->delayed_set_value = 0;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
		brightness = led_cdev->blink_brightness;
 | 
							brightness = led_cdev->blink_brightness;
 | 
				
			||||||
		delay = led_cdev->blink_delay_on;
 | 
							delay = led_cdev->blink_delay_on;
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -119,9 +119,10 @@ void led_set_brightness(struct led_classdev *led_cdev,
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int ret = 0;
 | 
						int ret = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* delay brightness setting if need to stop soft-blink timer */
 | 
						/* delay brightness if soft-blink is active */
 | 
				
			||||||
	if (led_cdev->blink_delay_on || led_cdev->blink_delay_off) {
 | 
						if (led_cdev->blink_delay_on || led_cdev->blink_delay_off) {
 | 
				
			||||||
		led_cdev->delayed_set_value = brightness;
 | 
							led_cdev->delayed_set_value = brightness;
 | 
				
			||||||
 | 
							if (brightness == LED_OFF)
 | 
				
			||||||
			schedule_work(&led_cdev->set_brightness_work);
 | 
								schedule_work(&led_cdev->set_brightness_work);
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue