Commit a46b6e72 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'regmap/fix/core' into regmap-linus

parents 6ce4eac1 73f080fd
...@@ -1549,7 +1549,7 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val, ...@@ -1549,7 +1549,7 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
val + (i * val_bytes), val + (i * val_bytes),
val_bytes); val_bytes);
if (ret != 0) if (ret != 0)
return ret; goto out;
} }
} else { } else {
ret = _regmap_raw_write(map, reg, wval, val_bytes * val_count); ret = _regmap_raw_write(map, reg, wval, val_bytes * val_count);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment