aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2016-03-13 15:16:36 +0700
committerMark Brown <broonie@kernel.org>2016-03-13 15:16:36 +0700
commit95d7ff56d49057a21f9afbd2e1c5bd005057de7d (patch)
treee8177fbfaf50943856a4c603016918f868921990 /sound
parentMerge remote-tracking branch 'asoc/topic/pcm179x' into asoc-next (diff)
parentASoC: pcm3168a: remove unused variable (diff)
downloadlinux-dev-95d7ff56d49057a21f9afbd2e1c5bd005057de7d.tar.xz
linux-dev-95d7ff56d49057a21f9afbd2e1c5bd005057de7d.zip
Merge remote-tracking branch 'asoc/topic/pcm3168a' into asoc-next
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/pcm3168a.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sound/soc/codecs/pcm3168a.c b/sound/soc/codecs/pcm3168a.c
index 44b268aa4dd8..992a77edcd5d 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;
@@ -395,13 +400,12 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream,
struct pcm3168a_priv *pcm3168a = snd_soc_codec_get_drvdata(codec);
bool tx, master_mode;
u32 val, mask, shift, reg;
- unsigned int rate, channels, fmt, ratio, max_ratio;
+ unsigned int rate, fmt, ratio, max_ratio;
int i, min_frame_size;
snd_pcm_format_t format;
rate = params_rate(params);
format = params_format(params);
- channels = params_channels(params);
ratio = pcm3168a->sysclk / rate;