Skip to content

Commit

Permalink
ASoC: Fix SmartQ compilation
Browse files Browse the repository at this point in the history
This makes the SmartQ sound driver compile again with recent ASoC changes.

Signed-off-by: Maurus Cuelenaere <[email protected]>
Acked-by: Liam Girdwood <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
mcuelenaere authored and broonie committed Jan 5, 2011
1 parent 776065e commit 2742f2a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions sound/soc/s3c24xx/smartq_wm8987.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ static int smartq_hifi_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params)
{
struct snd_soc_pcm_runtime *rtd = substream->private_data;
struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
struct snd_soc_dai *codec_dai = rtd->codec_dai;
struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
struct s3c_i2sv2_rate_calc div;
unsigned int clk = 0;
int ret;
Expand Down Expand Up @@ -156,8 +156,9 @@ static const struct snd_soc_dapm_route audio_map[] = {
{"LINPUT2", NULL, "Mic Bias"},
};

static int smartq_wm8987_init(struct snd_soc_codec *codec)
static int smartq_wm8987_init(struct snd_soc_pcm_runtime *rtd)
{
struct snd_soc_codec *codec = rtd->codec;
int err = 0;

/* Add SmartQ specific widgets */
Expand Down Expand Up @@ -190,8 +191,8 @@ static int smartq_wm8987_init(struct snd_soc_codec *codec)
return err;

/* Headphone jack detection */
err = snd_soc_jack_new(&snd_soc_smartq, "Headphone Jack",
SND_JACK_HEADPHONE, &smartq_jack);
err = snd_soc_jack_new(codec, "Headphone Jack", SND_JACK_HEADPHONE,
&smartq_jack);
if (err)
return err;

Expand Down

0 comments on commit 2742f2a

Please sign in to comment.