alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: pcm3168a: Call clk_set_rate in pcm3168a_set_dai_sysclk
@ 2016-01-28 16:54 Damien Horsley
  2016-01-28 23:15 ` Mark Brown
  2016-01-29  0:16 ` Applied "ASoC: pcm3168a: Call clk_set_rate in pcm3168a_set_dai_sysclk" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Damien Horsley @ 2016-01-28 16:54 UTC (permalink / raw)
  To: alsa-devel
  Cc: Liam Girdwood, linux-kernel, Takashi Iwai, Mark Brown,
	Damien.Horsley

From: "Damien.Horsley" <Damien.Horsley@imgtec.com>

Call clk_set_rate in pcm3168a_set_dai_sysclk

Signed-off-by: Damien.Horsley <Damien.Horsley@imgtec.com>
---
 sound/soc/codecs/pcm3168a.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sound/soc/codecs/pcm3168a.c b/sound/soc/codecs/pcm3168a.c
index 44b268a..0c7248a 100644
--- a/sound/soc/codecs/pcm3168a.c
+++ b/sound/soc/codecs/pcm3168a.c
@@ -299,10 +299,15 @@ static int pcm3168a_set_dai_sysclk(struct snd_soc_dai *dai,
 				  int clk_id, unsigned int freq, int dir)
 {
 	struct pcm3168a_priv *pcm3168a = snd_soc_codec_get_drvdata(dai->codec);
+	int ret;
 
 	if (freq > PCM1368A_MAX_SYSCLK)
 		return -EINVAL;
 
+	ret = clk_set_rate(pcm3168a->scki, freq);
+	if (ret)
+		return ret;
+
 	pcm3168a->sysclk = freq;
 
 	return 0;
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-29  0:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-28 16:54 [PATCH] ASoC: pcm3168a: Call clk_set_rate in pcm3168a_set_dai_sysclk Damien Horsley
2016-01-28 23:15 ` Mark Brown
2016-01-29  0:16 ` Applied "ASoC: pcm3168a: Call clk_set_rate in pcm3168a_set_dai_sysclk" to the asoc tree Mark Brown

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).