diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-01-16 08:34:53 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-01-16 11:59:36 -0500 |
commit | e236d4d796f87d062f59af8004c8f485baf10b62 (patch) | |
tree | 3fa89bbabeef3a5d6c2c1a4479980cf79fa1b9fa | |
parent | 3a41e0f7233a644b45e536a31c0116500ac106a4 (diff) |
ASoC: smdk_wm8580: Pass card DAPM context to snd_soc_dapm_disable_pin()
The "MicIn" widget is a card level DAPM element so pass the card's DAPM
context instead of the CODEC's DAPM context to snd_soc_dapm_disable_pin().
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/samsung/smdk_wm8580.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sound/soc/samsung/smdk_wm8580.c b/sound/soc/samsung/smdk_wm8580.c index 17a2f717ec02..548bfd993788 100644 --- a/sound/soc/samsung/smdk_wm8580.c +++ b/sound/soc/samsung/smdk_wm8580.c | |||
@@ -136,13 +136,10 @@ static const struct snd_soc_dapm_route smdk_wm8580_audio_map[] = { | |||
136 | 136 | ||
137 | static int smdk_wm8580_init_paiftx(struct snd_soc_pcm_runtime *rtd) | 137 | static int smdk_wm8580_init_paiftx(struct snd_soc_pcm_runtime *rtd) |
138 | { | 138 | { |
139 | struct snd_soc_codec *codec = rtd->codec; | ||
140 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
141 | |||
142 | /* Enabling the microphone requires the fitting of a 0R | 139 | /* Enabling the microphone requires the fitting of a 0R |
143 | * resistor to connect the line from the microphone jack. | 140 | * resistor to connect the line from the microphone jack. |
144 | */ | 141 | */ |
145 | snd_soc_dapm_disable_pin(dapm, "MicIn"); | 142 | snd_soc_dapm_disable_pin(&rtd->card->dapm, "MicIn"); |
146 | 143 | ||
147 | return 0; | 144 | return 0; |
148 | } | 145 | } |