diff options
| author | mattis fjallstrom <mattis@acm.org> | 2015-06-01 19:10:13 -0700 |
|---|---|---|
| committer | mattis fjallstrom <mattis@acm.org> | 2015-06-01 19:10:13 -0700 |
| commit | 09073cf965cdea2a914d86c6ffb5fe2eae266cf8 (patch) | |
| tree | 439dd88f67f3e324e575d7e5f49ef61cd362be49 | |
| parent | cf4422bbeffcf1e1a57dcb537a9a76056307ac43 (diff) | |
| download | olio-linux-3.10-09073cf965cdea2a914d86c6ffb5fe2eae266cf8.tar.xz olio-linux-3.10-09073cf965cdea2a914d86c6ffb5fe2eae266cf8.zip | |
Fixed output statement where variable would be used uninitialized.
Change-Id: Icb0acb239a554cfa15b95c5f9a17f26e82e8c4e5
| -rw-r--r-- | sound/soc/omap/omap3h1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/omap/omap3h1.c b/sound/soc/omap/omap3h1.c index 179c53d4655..108d104502d 100644 --- a/sound/soc/omap/omap3h1.c +++ b/sound/soc/omap/omap3h1.c @@ -46,7 +46,7 @@ static int omap3h1_hw_params(struct snd_pcm_substream *substream, //freq = 256 * params_rate(params); // We are triggering from the 96 MHz FSCK - pr_info("ASoc OMAP3H1: setting system clock to: %d", freq); + pr_info("ASoc OMAP3H1: setting according to system clock\n"); ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_SYSCLK_CLKS_FCLK, 96000000, SND_SOC_CLOCK_OUT); if (ret < 0) { |