Browse Source

regmap: A cache type of _NONE behaves like a bypassed cache

Avoid extra special casing by setting the cache_bypass flag when we're
not caching.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown 13 years ago
parent
commit
e7a6db30df
1 changed files with 3 additions and 1 deletions
  1. 3 1
      drivers/base/regmap/regcache.c

+ 3 - 1
drivers/base/regmap/regcache.c

@@ -82,8 +82,10 @@ int regcache_init(struct regmap *map)
 	int i;
 	int i;
 	void *tmp_buf;
 	void *tmp_buf;
 
 
-	if (map->cache_type == REGCACHE_NONE)
+	if (map->cache_type == REGCACHE_NONE) {
+		map->cache_bypass = true;
 		return 0;
 		return 0;
+	}
 
 
 	for (i = 0; i < ARRAY_SIZE(cache_types); i++)
 	for (i = 0; i < ARRAY_SIZE(cache_types); i++)
 		if (cache_types[i]->type == map->cache_type)
 		if (cache_types[i]->type == map->cache_type)