|
@@ -337,18 +337,12 @@ static int lp5523_update_program_memory(struct lp55xx_chip *chip,
|
|
|
if (i % 2)
|
|
|
goto err;
|
|
|
|
|
|
- mutex_lock(&chip->lock);
|
|
|
-
|
|
|
for (i = 0; i < LP5523_PROGRAM_LENGTH; i++) {
|
|
|
ret = lp55xx_write(chip, LP5523_REG_PROG_MEM + i, pattern[i]);
|
|
|
- if (ret) {
|
|
|
- mutex_unlock(&chip->lock);
|
|
|
+ if (ret)
|
|
|
return -EINVAL;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
- mutex_unlock(&chip->lock);
|
|
|
-
|
|
|
return size;
|
|
|
|
|
|
err:
|
|
@@ -548,15 +542,17 @@ static ssize_t store_engine_load(struct device *dev,
|
|
|
{
|
|
|
struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
struct lp55xx_chip *chip = led->chip;
|
|
|
+ int ret;
|
|
|
|
|
|
mutex_lock(&chip->lock);
|
|
|
|
|
|
chip->engine_idx = nr;
|
|
|
lp5523_load_engine_and_select_page(chip);
|
|
|
+ ret = lp5523_update_program_memory(chip, buf, len);
|
|
|
|
|
|
mutex_unlock(&chip->lock);
|
|
|
|
|
|
- return lp5523_update_program_memory(chip, buf, len);
|
|
|
+ return ret;
|
|
|
}
|
|
|
store_load(1)
|
|
|
store_load(2)
|