From 01e436bd2684e407fa110e60531d1c3253c00aab Mon Sep 17 00:00:00 2001 From: codeworkx Date: Sun, 9 Dec 2012 17:51:27 +0100 Subject: p51xx: 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: I802b979f82bc4792da0f682f62ddb3e8963582ce --- audio/audio_hw.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'audio') diff --git a/audio/audio_hw.c b/audio/audio_hw.c index 678d673..a6a8759 100755 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c @@ -2522,13 +2522,11 @@ static int adev_set_voice_volume(struct audio_hw_device *dev, float volume) { struct espresso_audio_device *adev = (struct espresso_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; } -- cgit v1.1