regmap: spmi: Fix regmap_spmi_ext_read in multi-byte case
authorJack Pham <jackp@codeaurora.org>
Fri, 15 Apr 2016 06:37:26 +0000 (23:37 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 May 2016 01:35:11 +0000 (18:35 -0700)
commitd764263450e64f2dddb07afda47c54238fdc491d
treed7ccdcab82cef1651069c8cb76f7d29eebdaecc2
parent7ac50df1487deaa39b2b19d7c205fe49d2ef132b
regmap: spmi: Fix regmap_spmi_ext_read in multi-byte case

commit dec8e8f6e6504aa3496c0f7cc10c756bb0e10f44 upstream.

Specifically for the case of reads that use the Extended Register
Read Long command, a multi-byte read operation is broken up into
8-byte chunks.  However the call to spmi_ext_register_readl() is
incorrectly passing 'val_size', which if greater than 8 will
always fail.  The argument should instead be 'len'.

Fixes: c9afbb05a9ff ("regmap: spmi: support base and extended register spaces")
Signed-off-by: Jack Pham <jackp@codeaurora.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/regmap/regmap-spmi.c