Skip to content

Commit

Permalink
regmap: A cache type of _NONE behaves like a bypassed cache
Browse files Browse the repository at this point in the history
Avoid extra special casing by setting the cache_bypass flag when we're
not caching.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mark Brown committed Sep 19, 2011
1 parent 5d1729e commit e7a6db3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/base/regmap/regcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ int regcache_init(struct regmap *map)
int i;
void *tmp_buf;

if (map->cache_type == REGCACHE_NONE)
if (map->cache_type == REGCACHE_NONE) {
map->cache_bypass = true;
return 0;
}

for (i = 0; i < ARRAY_SIZE(cache_types); i++)
if (cache_types[i]->type == map->cache_type)
Expand Down

0 comments on commit e7a6db3

Please sign in to comment.