diff options
author | Mark Brown <broonie@linaro.org> | 2014-03-24 11:16:43 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-24 11:16:43 +0000 |
commit | 002ccbb09c63a0df75382c9ace078b7cc4aee4e9 (patch) | |
tree | d740d4e4b22485fc8430fe9b9b443c1b49727a6e /sound | |
parent | b51086eaee34a2a6fd34f8a37c8e77d1b1c07a44 (diff) | |
parent | b1eac430b6a4bee6821273d9b41dd3593eb7830b (diff) |
Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sh/rcar/src.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sound/soc/sh/rcar/src.c b/sound/soc/sh/rcar/src.c index eee75ebf961c..6232b7d307aa 100644 --- a/sound/soc/sh/rcar/src.c +++ b/sound/soc/sh/rcar/src.c @@ -182,16 +182,20 @@ unsigned int rsnd_src_get_ssi_rate(struct rsnd_priv *priv, struct rsnd_dai_stream *io, struct snd_pcm_runtime *runtime) { + struct rsnd_mod *src_mod = rsnd_io_to_mod_src(io); struct rsnd_src *src; - unsigned int rate; + unsigned int rate = 0; - src = rsnd_mod_to_src(rsnd_io_to_mod_src(io)); + if (src_mod) { + src = rsnd_mod_to_src(src_mod); + + /* + * return convert rate if SRC is used, + * otherwise, return runtime->rate as usual + */ + rate = rsnd_src_convert_rate(src); + } - /* - * return convert rate if SRC is used, - * otherwise, return runtime->rate as usual - */ - rate = rsnd_src_convert_rate(src); if (!rate) rate = runtime->rate; |