regmap: rbtree: Simplify adjacent node look-up
authorLars-Peter Clausen <lars@metafoo.de>
Thu, 29 Aug 2013 08:26:32 +0000 (10:26 +0200)
committerMark Brown <broonie@linaro.org>
Thu, 29 Aug 2013 12:32:40 +0000 (13:32 +0100)
commit194c753a214ba7f1497552dd530021884d164146
treee8d9ab3aa7b2ad8160d7a77c077b999c453440ba
parent65c180fd95993abc31c8770e014ebedade46b623
regmap: rbtree: Simplify adjacent node look-up

A register which is adjacent to a node will either be left to the first
register or right to the last register. It will not be within the node's range,
so there is no point in checking for each register cached by the node whether
the new register is next to it. It is sufficient to check whether the register
comes before the first register or after the last register of the node.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/base/regmap/regcache-rbtree.c
This page took 0.024516 seconds and 5 git commands to generate.