diff options
author | codeworkx <codeworkx@cyanogenmod.org> | 2012-12-09 15:28:10 +0100 |
---|---|---|
committer | nebkat <nebkat@teamhacksung.org> | 2012-12-09 13:33:28 +0000 |
commit | 046752d1b1fde3e5d9cf12abb1c7e5f3fdc992c4 (patch) | |
tree | fd120838752378b1f3787b05e3e20f3475f28130 /audio | |
parent | a91930fd4e3d82230184b27ce19c396b8d40dbb5 (diff) | |
download | device_samsung_n7100-046752d1b1fde3e5d9cf12abb1c7e5f3fdc992c4.zip device_samsung_n7100-046752d1b1fde3e5d9cf12abb1c7e5f3fdc992c4.tar.gz device_samsung_n7100-046752d1b1fde3e5d9cf12abb1c7e5f3fdc992c4.tar.bz2 |
n7100: audio: remove mutex lock at adev_set_voice_volume
if set_mode is called it's locking and calls adev_set_voice_volume which fails
to lock then.
Change-Id: I0b7e030e7f3a6d9448b75038941f2a367eb67504
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio_hw.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c index f2ca5d8..8473841 100644 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c @@ -2550,13 +2550,11 @@ static int adev_set_voice_volume(struct audio_hw_device *dev, float volume) { struct m0_audio_device *adev = (struct m0_audio_device *)dev; - pthread_mutex_lock(&adev->lock); adev->voice_volume = volume; if (adev->mode == AUDIO_MODE_IN_CALL) ril_set_call_volume(&adev->ril, SOUND_TYPE_VOICE, volume); - pthread_mutex_unlock(&adev->lock); return 0; } |