aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/magician.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/pxa/magician.c')
-rw-r--r--sound/soc/pxa/magician.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/pxa/magician.c b/sound/soc/pxa/magician.c
index f1acdc57cfd8..98cb9906e795 100644
--- a/sound/soc/pxa/magician.c
+++ b/sound/soc/pxa/magician.c
@@ -74,9 +74,13 @@ static int magician_startup(struct snd_pcm_substream *substream)
74 struct snd_soc_pcm_runtime *rtd = substream->private_data; 74 struct snd_soc_pcm_runtime *rtd = substream->private_data;
75 struct snd_soc_codec *codec = rtd->codec; 75 struct snd_soc_codec *codec = rtd->codec;
76 76
77 mutex_lock(&codec->mutex);
78
77 /* check the jack status at stream startup */ 79 /* check the jack status at stream startup */
78 magician_ext_control(codec); 80 magician_ext_control(codec);
79 81
82 mutex_unlock(&codec->mutex);
83
80 return 0; 84 return 0;
81} 85}
82 86