summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2015-12-11 11:27:08 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-01-31 11:25:48 -0800
commit5e201204474d4760bb496b77b01b8e143cdaf20e (patch)
treefcc99455b0e3c1e4a1a44246b8de36e0df79435d /sound
parent66e7f16cf867a10f4023ddd4cee6ec385b2964ce (diff)
ASoC: wm8974: set cache type for regmap
commit 1ea5998afe903384ddc16391d4c023cd4c867bea upstream. Attempting to use this codec driver triggers a BUG() in regcache_sync() since no cache type is set. The register map of this device is fairly small and has few holes so a flat cache is suitable. Signed-off-by: Mans Rullgard <mans@mansr.com> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8974.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8974.c b/sound/soc/codecs/wm8974.c
index 0a60677397b3..4c29bd2ae75c 100644
--- a/sound/soc/codecs/wm8974.c
+++ b/sound/soc/codecs/wm8974.c
@@ -574,6 +574,7 @@ static const struct regmap_config wm8974_regmap = {
.max_register = WM8974_MONOMIX,
.reg_defaults = wm8974_reg_defaults,
.num_reg_defaults = ARRAY_SIZE(wm8974_reg_defaults),
+ .cache_type = REGCACHE_FLAT,
};
static int wm8974_probe(struct snd_soc_codec *codec)