[alsa-devel] [PATCH 0/1] ASoC: TWL4030: Fix for compilation error
Hello,
I'm really sorry for the trouble that this caused.
The patch provides fix for the compillation error, which is introduced by the "ASoC: TWL4030: Add constrains for second stream" patch of mine...
--- Peter Ujfalusi (1): ASoC: TWL4030: Compillation error fix
sound/soc/codecs/twl4030.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-)
Fix for compillation error introduced by the constrain patch.
Signed-off-by: Peter Ujfalusi peter.ujfalusi@nokia.com --- sound/soc/codecs/twl4030.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c index bfda7a8..921b205 100644 --- a/sound/soc/codecs/twl4030.c +++ b/sound/soc/codecs/twl4030.c @@ -1220,11 +1220,12 @@ static int twl4030_set_bias_level(struct snd_soc_codec *codec, return 0; }
-static int twl4030_startup(struct snd_pcm_substream *substream) +static int twl4030_startup(struct snd_pcm_substream *substream, + struct snd_soc_dai *dai) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_device *socdev = rtd->socdev; - struct snd_soc_codec *codec = socdev->codec; + struct snd_soc_codec *codec = socdev->card->codec; struct twl4030_priv *twl4030 = codec->private_data;
/* If we already have a playback or capture going then constrain @@ -1251,11 +1252,12 @@ static int twl4030_startup(struct snd_pcm_substream *substream) return 0; }
-static void twl4030_shutdown(struct snd_pcm_substream *substream) +static void twl4030_shutdown(struct snd_pcm_substream *substream, + struct snd_soc_dai *dai) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_device *socdev = rtd->socdev; - struct snd_soc_codec *codec = socdev->codec; + struct snd_soc_codec *codec = socdev->card->codec; struct twl4030_priv *twl4030 = codec->private_data;
if (twl4030->master_substream == substream)
On Tue, Apr 07, 2009 at 09:14:00AM +0300, Peter Ujfalusi wrote:
Fix for compillation error introduced by the constrain patch.
Signed-off-by: Peter Ujfalusi peter.ujfalusi@nokia.com
Applied, thanks.
participants (2)
-
Mark Brown
-
Peter Ujfalusi