summaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-07-17 21:45:38 +0100
committerMark Brown <broonie@linaro.org>2014-07-17 21:45:38 +0100
commite122b3aec7f2d52e429caf9a07a3a99cf1429dce (patch)
tree367e2ce0f80830f1ccda8532f390c0063914bf23 /sound/soc/fsl
parent1795cd9b3a91d4b5473c97f491d63892442212ab (diff)
parent6385723a82e0e1162ecd04f367393aea722e42c7 (diff)
downloadlinux-stable-e122b3aec7f2d52e429caf9a07a3a99cf1429dce.tar.gz
linux-stable-e122b3aec7f2d52e429caf9a07a3a99cf1429dce.tar.bz2
linux-stable-e122b3aec7f2d52e429caf9a07a3a99cf1429dce.zip
Merge tag 'asoc-v3.16-rc1' into asoc-linus
ASoC: Fixes for v3.16 Quite a few build coverage fixes in here among the usual small driver fixes includling the sigmadsp change from Lars - moving the driver to separate modules per bus (which is basically just code motion) avoids issues with some combinations of buses being enabled. # gpg: Signature made Thu 19 Jun 2014 11:57:31 BST using RSA key ID 7EA229BD # gpg: Good signature from "Mark Brown <broonie@sirena.org.uk>" # gpg: aka "Mark Brown <broonie@debian.org>" # gpg: aka "Mark Brown <broonie@kernel.org>" # gpg: aka "Mark Brown <broonie@tardis.ed.ac.uk>" # gpg: aka "Mark Brown <broonie@linaro.org>" # gpg: aka "Mark Brown <Mark.Brown@linaro.org>"
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r--sound/soc/fsl/fsl_ssi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 9bfef55d77d1..3043d576856b 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -590,8 +590,8 @@ static int fsl_ssi_set_bclk(struct snd_pcm_substream *substream,
else
clkrate = clk_round_rate(ssi_private->baudclk, tmprate);
- do_div(clkrate, factor);
- afreq = (u32)clkrate / (i + 1);
+ clkrate /= factor;
+ afreq = clkrate / (i + 1);
if (freq == afreq)
sub = 0;