diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2018-02-12 18:15:44 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-02-13 12:26:32 +0000 |
commit | 71df179363a5a733a8932e9afb869760d7559383 (patch) | |
tree | 6aaf78b4dcbf358eb58daeaf4e9f1d96b9eda63d /drivers/base/regmap | |
parent | 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 (diff) |
regmap: Correct comparison in regmap_cached
The cache pointer points to the actual memory used by the cache, as the
comparison here is looking for the type of the cache it should check
against cache_type.
Fixes: 1ea975cf1ef5 ("regmap: Add a function to check if a regmap register is cached")
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/base/regmap')
-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 ee302ccdfbc8..7519b039c162 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -99,7 +99,7 @@ bool regmap_cached(struct regmap *map, unsigned int reg) int ret; unsigned int val; - if (map->cache == REGCACHE_NONE) + if (map->cache_type == REGCACHE_NONE) return false; if (!map->cache_ops) |