diff options
author | Kim, Milo <Milo.Kim@ti.com> | 2012-08-22 03:32:45 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@canonical.com> | 2012-09-11 06:32:41 -0400 |
commit | a39b9854c79cc9ac7b7b6fed58cf07da23f1f41e (patch) | |
tree | dec736d03ac5a89e97177666efa58521dc241efd | |
parent | 94b43b677104e50b9f8dd75aacb3c69e16089a68 (diff) |
leds-lp5523: set the brightness to 0 forcely on removing the driver
Turning off the brightness of each channel is required
when removing the driver.
So use flush_work() rather than cancel_work_sync() to execute
remaining brightness works.
Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
-rw-r--r-- | drivers/leds/leds-lp5523.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c index 9fd9a92ed916..2fd5689f65c0 100644 --- a/drivers/leds/leds-lp5523.c +++ b/drivers/leds/leds-lp5523.c | |||
@@ -974,7 +974,7 @@ static int __devinit lp5523_probe(struct i2c_client *client, | |||
974 | fail2: | 974 | fail2: |
975 | for (i = 0; i < chip->num_leds; i++) { | 975 | for (i = 0; i < chip->num_leds; i++) { |
976 | led_classdev_unregister(&chip->leds[i].cdev); | 976 | led_classdev_unregister(&chip->leds[i].cdev); |
977 | cancel_work_sync(&chip->leds[i].brightness_work); | 977 | flush_work(&chip->leds[i].brightness_work); |
978 | } | 978 | } |
979 | fail1: | 979 | fail1: |
980 | if (pdata->enable) | 980 | if (pdata->enable) |
@@ -993,7 +993,7 @@ static int lp5523_remove(struct i2c_client *client) | |||
993 | 993 | ||
994 | for (i = 0; i < chip->num_leds; i++) { | 994 | for (i = 0; i < chip->num_leds; i++) { |
995 | led_classdev_unregister(&chip->leds[i].cdev); | 995 | led_classdev_unregister(&chip->leds[i].cdev); |
996 | cancel_work_sync(&chip->leds[i].brightness_work); | 996 | flush_work(&chip->leds[i].brightness_work); |
997 | } | 997 | } |
998 | 998 | ||
999 | if (chip->pdata->enable) | 999 | if (chip->pdata->enable) |