aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/spitz.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/pxa/spitz.c')
-rw-r--r--sound/soc/pxa/spitz.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/pxa/spitz.c b/sound/soc/pxa/spitz.c
index 0680b11c2685..7e13440cca41 100644
--- a/sound/soc/pxa/spitz.c
+++ b/sound/soc/pxa/spitz.c
@@ -110,8 +110,13 @@ static int spitz_startup(struct snd_pcm_substream *substream)
110 struct snd_soc_pcm_runtime *rtd = substream->private_data; 110 struct snd_soc_pcm_runtime *rtd = substream->private_data;
111 struct snd_soc_codec *codec = rtd->codec; 111 struct snd_soc_codec *codec = rtd->codec;
112 112
113 mutex_lock(&codec->mutex);
114
113 /* check the jack status at stream startup */ 115 /* check the jack status at stream startup */
114 spitz_ext_control(codec); 116 spitz_ext_control(codec);
117
118 mutex_unlock(&codec->mutex);
119
115 return 0; 120 return 0;
116} 121}
117 122