diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-24 22:39:12 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-24 22:44:51 +0100 |
commit | 40c5cc263954444f5a76cbf25d408c42da480122 (patch) | |
tree | 29b05a44f2953fd544c60949e18c1f78e39f9fcc /drivers/base | |
parent | 90923351d480fffd0d24646db83f6f8315eed0d9 (diff) | |
download | linux-40c5cc263954444f5a76cbf25d408c42da480122.tar.gz linux-40c5cc263954444f5a76cbf25d408c42da480122.tar.bz2 linux-40c5cc263954444f5a76cbf25d408c42da480122.zip |
regmap: Fix bulk reads
We should be reading the number of bytes we were asked for, not the size
of a single register.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/regmap/regmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c index cf3565cae93d..0eef4da1ac61 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -317,7 +317,7 @@ static int _regmap_raw_read(struct regmap *map, unsigned int reg, void *val, u8[0] |= map->bus->read_flag_mask; ret = map->bus->read(map->dev, map->work_buf, map->format.reg_bytes, - val, map->format.val_bytes); + val, val_len); if (ret != 0) return ret; |