]> git.karo-electronics.de Git - karo-tx-linux.git/commit
regmap: cache Fix regcache-rbtree sync
authorLars-Peter Clausen <lars@metafoo.de>
Wed, 13 Mar 2013 15:38:33 +0000 (16:38 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Apr 2013 16:38:43 +0000 (09:38 -0700)
commit6ec0e8e15ecc310464185db7820c5d30be409d1e
tree35bd1748d9e516b7809941f9e3693def4499acab
parent93c86c4916e247e5e8de4d98c0e855d664e41468
regmap: cache Fix regcache-rbtree sync

commit 8abac3ba51b5525354e9b2ec0eed1c9e95c905d9 upstream.

The last register block, which falls into the specified range, is not handled
correctly. The formula which calculates the number of register which should be
synced is inverse (and off by one). E.g. if all registers in that block should
be synced only one is synced, and if only one should be synced all (but one) are
synced. To calculate the number of registers that need to be synced we need to
subtract the number of the first register in the block from the max register
number and add one. This patch updates the code accordingly.

The issue was introduced in commit ac8d91c ("regmap: Supply ranges to the sync
operations").

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/regmap/regcache-rbtree.c