diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-04-10 19:38:23 -0300 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-11 11:43:19 +0100 |
commit | 7a0a289c5f4aa7547e4b2630c7b18da8b0fb8b4f (patch) | |
tree | 256959ebd9c035c84466f603311f44829b86f098 /sound/soc/codecs/ac97.c | |
parent | b46ac308bf4f675cac9caf63c2de22f2a18f9347 (diff) | |
download | blackbird-obmc-linux-7a0a289c5f4aa7547e4b2630c7b18da8b0fb8b4f.tar.gz blackbird-obmc-linux-7a0a289c5f4aa7547e4b2630c7b18da8b0fb8b4f.zip |
ASoC: ac97: Fix build due to removal of 'runtime' definition
Fix the following build error:
sound/soc/codecs/ac97.c: In function 'ac97_prepare':
sound/soc/codecs/ac97.c:33: error: 'runtime' undeclared (first use in this function)
This was caused by commit e6968a (ASoC: codecs: Remove rtd->codec usage from CODEC drivers),
which removed the 'struct snd_pcm_runtime *runtime = substream->runtime' definition.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/ac97.c')
-rw-r--r-- | sound/soc/codecs/ac97.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ac97.c b/sound/soc/codecs/ac97.c index a99a1b304e1c..2023c749f232 100644 --- a/sound/soc/codecs/ac97.c +++ b/sound/soc/codecs/ac97.c @@ -30,7 +30,7 @@ static int ac97_prepare(struct snd_pcm_substream *substream, int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE; - return snd_ac97_set_rate(codec->ac97, reg, runtime->rate); + return snd_ac97_set_rate(codec->ac97, reg, substream->runtime->rate); } #define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ |