]> git.karo-electronics.de Git - linux-beck.git/commitdiff
regmap: Try cached read before checking if a hardware read is possible
authorLars-Peter Clausen <lars@metafoo.de>
Wed, 16 Nov 2011 15:28:19 +0000 (16:28 +0100)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 16 Nov 2011 17:34:53 +0000 (17:34 +0000)
For some register format types we do not provide a parse_val so we can not do a
hardware read. But a cached read is still possible, so try to read from the
cache first, before checking whether a hardware read is possible. Otherwise the
cache becomes pretty useless for these register types.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regmap.c

index 3cf4785c3afece000e3109219c787927d8d2b874..b96cf7202860fac6ff6badb6e11de290eced07e4 100644 (file)
@@ -434,15 +434,15 @@ static int _regmap_read(struct regmap *map, unsigned int reg,
 {
        int ret;
 
-       if (!map->format.parse_val)
-               return -EINVAL;
-
        if (!map->cache_bypass) {
                ret = regcache_read(map, reg, val);
                if (ret == 0)
                        return 0;
        }
 
+       if (!map->format.parse_val)
+               return -EINVAL;
+
        if (map->cache_only)
                return -EBUSY;