aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/corgi.c
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-02-22 18:44:17 +0100
committerMark Brown <broonie@linaro.org>2014-02-23 10:51:05 +0900
commit9b87a5b0d4aad02e9dff299b63cd85930eb233d8 (patch)
tree8ea69539c37d0dbdda7a64675093d345213a152c /sound/soc/pxa/corgi.c
parentLinus 3.14-rc1 (diff)
downloadlinux-dev-9b87a5b0d4aad02e9dff299b63cd85930eb233d8.tar.xz
linux-dev-9b87a5b0d4aad02e9dff299b63cd85930eb233d8.zip
ASoC: pxa: Remove superfluous locking
The locking here was added in commit 71a295602e ("ASoC: Lock the CODEC in PXA external jack controls") to protect the DAPM changes that are made inside of ${board}_ext_control() against concurrent updates. The ASoC core was updated in commit a73fb2df01 ("ASoC: dapm: Use DAPM mutex for DAPM ops instead of codec mutex") to use a card wide lock rather the CODEC mutex to protect DAPM operations. We now have proper locking inside ${board}_ext_control() itself, so taking the CODEC lock can be removed. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/pxa/corgi.c')
-rw-r--r--sound/soc/pxa/corgi.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sound/soc/pxa/corgi.c b/sound/soc/pxa/corgi.c
index 1853d41034bf..b51f88002e62 100644
--- a/sound/soc/pxa/corgi.c
+++ b/sound/soc/pxa/corgi.c
@@ -99,13 +99,9 @@ static int corgi_startup(struct snd_pcm_substream *substream)
struct snd_soc_pcm_runtime *rtd = substream->private_data;
struct snd_soc_codec *codec = rtd->codec;
- mutex_lock(&codec->mutex);
-
/* check the jack status at stream startup */
corgi_ext_control(&codec->dapm);
- mutex_unlock(&codec->mutex);
-
return 0;
}