regmap: make sure we unlock on failure in regmap_bulk_write

Signed-off-by: Courtney Cavin <courtney.cavin@sonymobile.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Courtney Cavin 2013-11-20 15:27:09 -08:00 committed by Mark Brown
parent 04bc9ac163
commit 73f080fde5
1 changed files with 1 additions and 1 deletions

View File

@ -1549,7 +1549,7 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
val + (i * val_bytes),
val_bytes);
if (ret != 0)
return ret;
goto out;
}
} else {
ret = _regmap_raw_write(map, reg, wval, val_bytes * val_count);