提交 ec8a365f 编写于 作者: D Dimitris Papastamos 提交者: Mark Brown

regmap: Modify map->cache_bypass directly

In preperation for the upcoming patches, modify map->cache_bypass
directly.  The helper functions will grab an exclusive lock.  Because
we'll have acquired the same lock we need to avoid a deadlock.
Signed-off-by: NDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 a40c2823
...@@ -241,9 +241,9 @@ int regcache_sync(struct regmap *map) ...@@ -241,9 +241,9 @@ int regcache_sync(struct regmap *map)
ret = regcache_read(map, i, &val); ret = regcache_read(map, i, &val);
if (ret < 0) if (ret < 0)
goto out; goto out;
regcache_cache_bypass(map, true); map->cache_bypass = 1;
ret = regmap_write(map, i, val); ret = regmap_write(map, i, val);
regcache_cache_bypass(map, false); map->cache_bypass = 0;
if (ret < 0) if (ret < 0)
goto out; goto out;
dev_dbg(map->dev, "Synced register %#x, value %#x\n", dev_dbg(map->dev, "Synced register %#x, value %#x\n",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册