]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ASoC: Forward calls to snd_soc_cache_sync() to regcache_sync()
authorLars-Peter Clausen <lars@metafoo.de>
Sat, 8 Nov 2014 15:38:06 +0000 (16:38 +0100)
committerMark Brown <broonie@kernel.org>
Sun, 9 Nov 2014 09:06:30 +0000 (09:06 +0000)
For convenience for drivers that do not want to keep their own pointer to
regmap struct around forward calls to snd_soc_cache_sync() to
regcache_sync() if the driver is using regmap. This is similar to what we do
for snd_soc_read()/snd_soc_write().

This patch also fixes drivers which already have been converted to regmap,
but still use snd_soc_cache_sync() for trying to the sync the cache.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-cache.c

index a9f82b5aba9d0387a1f6952ae264aa1b1bb85982..6dab81799b9a660299c27eb8432450bb8e27bc32 100644 (file)
@@ -187,6 +187,9 @@ int snd_soc_cache_sync(struct snd_soc_codec *codec)
        const char *name = "flat";
        int ret;
 
+       if (codec->component.regmap)
+               return regcache_sync(codec->component.regmap);
+
        if (!codec->cache_sync)
                return 0;