regmap: core: Cache all registers by default when cache is enabled

Currently all register maps with a cache need to provide a volatile
callback since the default is to assume all registers are volatile.
This is not sensible if we have a cache so change the default to be
fully cached if a cache is provided.

Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Mark Brown 2013-06-03 17:24:08 +01:00
Родитель d683b96b07
Коммит b92be6fecc
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -123,6 +123,9 @@ bool regmap_volatile(struct regmap *map, unsigned int reg)
if (map->volatile_table)
return _regmap_check_range_table(map, reg, map->volatile_table);
if (map->cache_ops)
return false;
else
return true;
}