* [PATCH 1/1] ASoC: tas5086: Reinit register values in probe function
@ 2015-01-22 15:26 pascal.huerst
0 siblings, 0 replies; only message in thread
From: pascal.huerst @ 2015-01-22 15:26 UTC (permalink / raw)
To: patch; +Cc: alsa-devel, Pascal Huerst
From: Pascal Huerst <pascal.huerst@gmail.com>
If the machine driver has been un/reloaded, the register values of
the tas5086 codec have to be reinitialized, in order to work properly.
Signed-off-by: Pascal Huerst <pascal.huerst@gmail.com>
diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
index 249ef5c..cd19171 100644
--- a/sound/soc/codecs/tas5086.c
+++ b/sound/soc/codecs/tas5086.c
@@ -851,10 +851,16 @@ static int tas5086_probe(struct snd_soc_codec *codec)
}
tas5086_reset(priv);
+ regcache_mark_dirty(priv->regmap);
+
ret = tas5086_init(codec->dev, priv);
if (ret < 0)
goto exit_disable_regulators;
+ ret = regcache_sync(priv->regmap);
+ if (ret < 0)
+ goto exit_disable_regulators;
+
/* set master volume to 0 dB */
ret = regmap_write(priv->regmap, TAS5086_MASTER_VOL, 0x30);
if (ret < 0)
--
1.9.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-01-22 15:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-22 15:26 [PATCH 1/1] ASoC: tas5086: Reinit register values in probe function pascal.huerst
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).