ASoC: mioa701_wm9713: Fix speaker event
authorLars-Peter Clausen <lars@metafoo.de>
Thu, 15 Jan 2015 11:52:01 +0000 (12:52 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 15 Jan 2015 11:57:05 +0000 (11:57 +0000)
Commit f6b2a04590bb ("ASoC: pxa: mioa701_wm9713: Convert to table based DAPM
setup") converted the driver to register the board level DAPM elements with
the card's DAPM context rather than the CODEC's DAPM context. The change
overlooked that the speaker widget event callback accesses the widget's
codec field which is only valid if the widget has been registered in a CODEC
DAPM context. This patch modifies the callback to take an alternative route
to get the CODEC.

Fixes: f6b2a04590bb ("ASoC: pxa: mioa701_wm9713: Convert to table based DAPM
setup")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/pxa/mioa701_wm9713.c

index 396dbd51a64f0183d787841b78a35adffd96de2f..a9615a574546988f6fc8e83fe5a018dc05528cba 100644 (file)
@@ -81,7 +81,7 @@ static int rear_amp_power(struct snd_soc_codec *codec, int power)
 static int rear_amp_event(struct snd_soc_dapm_widget *widget,
                          struct snd_kcontrol *kctl, int event)
 {
-       struct snd_soc_codec *codec = widget->codec;
+       struct snd_soc_codec *codec = widget->dapm->card->rtd[0].codec;
 
        return rear_amp_power(codec, SND_SOC_DAPM_EVENT_ON(event));
 }