diff options
author | Arun Chandran <achandran@mvista.com> | 2015-06-15 15:59:02 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-08-03 09:29:41 -0700 |
commit | c9f4682139e837bb46eb0e19a0a728c573cc2ab4 (patch) | |
tree | efcd8a9e8ec609c3345f3ffba611f3fb765673dd | |
parent | c24d75b7294314d9a07af26a8d062185b9314bea (diff) | |
download | linux-stable-c9f4682139e837bb46eb0e19a0a728c573cc2ab4.tar.gz linux-stable-c9f4682139e837bb46eb0e19a0a728c573cc2ab4.tar.bz2 linux-stable-c9f4682139e837bb46eb0e19a0a728c573cc2ab4.zip |
regmap: Fix regmap_bulk_read in BE mode
commit 15b8d2c41fe5839582029f65c5f7004db451cc2b upstream.
In big endian mode regmap_bulk_read gives incorrect data
for byte reads.
This is because memcpy of a single byte from an address
after full word read gives different results when
endianness differs. ie. we get little-end in LE and big-end in BE.
Signed-off-by: Arun Chandran <achandran@mvista.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-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 6a66f0b7d3d4..4f3d70a9d721 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -1586,7 +1586,7 @@ int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val, &ival); if (ret != 0) return ret; - memcpy(val + (i * val_bytes), &ival, val_bytes); + map->format.format_val(val + (i * val_bytes), ival, 0); } } |