From: Kai-Heng Feng Date: Thu, 2 Jul 2020 05:45:00 +0000 (+0800) Subject: leds: core: Flush scheduled work for system suspend X-Git-Tag: v4.9.233~87 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=426d0411c0f8040a7ed4b50a5af52dbd97c7b42f;p=platform%2Fkernel%2Flinux-amlogic.git leds: core: Flush scheduled work for system suspend [ Upstream commit 302a085c20194bfa7df52e0fe684ee0c41da02e6 ] Sometimes LED won't be turned off by LED_CORE_SUSPENDRESUME flag upon system suspend. led_set_brightness_nopm() uses schedule_work() to set LED brightness. However, there's no guarantee that the scheduled work gets executed because no one flushes the work. So flush the scheduled work to make sure LED gets turned off. Signed-off-by: Kai-Heng Feng Acked-by: Jacek Anaszewski Fixes: 81fe8e5b73e3 ("leds: core: Add led_set_brightness_nosleep{nopm} functions") Signed-off-by: Pavel Machek Signed-off-by: Sasha Levin --- diff --git a/drivers/leds/led-class.c b/drivers/leds/led-class.c index aa84e5b37593..7d3f23bad88d 100644 --- a/drivers/leds/led-class.c +++ b/drivers/leds/led-class.c @@ -110,6 +110,7 @@ void led_classdev_suspend(struct led_classdev *led_cdev) { led_cdev->flags |= LED_SUSPENDED; led_set_brightness_nopm(led_cdev, 0); + flush_work(&led_cdev->set_brightness_work); } EXPORT_SYMBOL_GPL(led_classdev_suspend);