diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-06-27 05:10:56 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@canonical.com> | 2012-07-23 19:52:35 -0400 |
commit | 5391dd0a9d084633e20e6583cfed233581c452f9 (patch) | |
tree | 35ac5251f60c9a46b2cf4a2e5e12c30f05a48865 /drivers/leds | |
parent | 32abb4788d3fff69fa242c7850e39ec1418df4f4 (diff) |
leds-lp5523: BUG() in error handling in probe()
Inside the error handling in lp5523_init_led(), there is a place that
calls to led_classdev_unregister(). When we unregister the LED drivers,
it tries to set the brightness to OFF. In this driver setting the
brightness is done through a work queue and the work queue hasn't been
initialized yet.
The result is that we trigger a WARN_ON() in the __queue_work().
The fix is to move the INIT_WORK() in front of the call to
lp5523_init_led().
Matt Renzelmann found this using a bug finding tool.
Reported-by: Matt Renzelmann <mjr@cs.wisc.edu>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-lp5523.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c index 857a3e15f2dd..e8a271232cd0 100644 --- a/drivers/leds/leds-lp5523.c +++ b/drivers/leds/leds-lp5523.c | |||
@@ -943,6 +943,9 @@ static int __devinit lp5523_probe(struct i2c_client *client, | |||
943 | if (pdata->led_config[i].led_current == 0) | 943 | if (pdata->led_config[i].led_current == 0) |
944 | continue; | 944 | continue; |
945 | 945 | ||
946 | INIT_WORK(&chip->leds[led].brightness_work, | ||
947 | lp5523_led_brightness_work); | ||
948 | |||
946 | ret = lp5523_init_led(&chip->leds[led], &client->dev, i, pdata); | 949 | ret = lp5523_init_led(&chip->leds[led], &client->dev, i, pdata); |
947 | if (ret) { | 950 | if (ret) { |
948 | dev_err(&client->dev, "error initializing leds\n"); | 951 | dev_err(&client->dev, "error initializing leds\n"); |
@@ -956,9 +959,6 @@ static int __devinit lp5523_probe(struct i2c_client *client, | |||
956 | LP5523_REG_LED_CURRENT_BASE + chip->leds[led].chan_nr, | 959 | LP5523_REG_LED_CURRENT_BASE + chip->leds[led].chan_nr, |
957 | chip->leds[led].led_current); | 960 | chip->leds[led].led_current); |
958 | 961 | ||
959 | INIT_WORK(&(chip->leds[led].brightness_work), | ||
960 | lp5523_led_brightness_work); | ||
961 | |||
962 | led++; | 962 | led++; |
963 | } | 963 | } |
964 | 964 | ||