diff options
| author | Walter Yang <yandongy@codeaurora.org> | 2015-12-08 17:59:04 +0800 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 21:15:12 -0700 |
| commit | afbbca6a77b067bf612f593f084f0e54656565ec (patch) | |
| tree | 135d15aafa1cee91d401cebe39cc8fbc3cbb09af | |
| parent | de0b2b9dd02c29c8ad1d71c87c6ed3528cc158d1 (diff) | |
ASoC: wcd_cpe_services: delete the redundant worker thread
Currently worker thread in cpe service is created twice.
The second thread handler overwrites the first one. The first
thread is not freed when the service is cleaned up. The fix
prevents creation of the redundant thread.
CRs-Fixed: 949165
Change-Id: Idd76b76d4f7f25d2592ca7c336dbee77b6efc7eb
Signed-off-by: Walter Yang <yandongy@codeaurora.org>
| -rw-r--r-- | sound/soc/codecs/wcd_cpe_services.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/wcd_cpe_services.c b/sound/soc/codecs/wcd_cpe_services.c index 573a5b1c7515..f100bf19ad92 100644 --- a/sound/soc/codecs/wcd_cpe_services.c +++ b/sound/soc/codecs/wcd_cpe_services.c @@ -1121,7 +1121,6 @@ static enum cpe_process_result cpe_boot_complete( } pr_debug("%s: boot complete\n", __func__); - cpe_create_worker_thread(t_info); return CPE_SVC_SUCCESS; } |
