commit | 7ca8b2a9dce984d3e71e72f17fd0cad308f3bc43 | [log] [tgz] |
---|---|---|
author | Aniket Kumar Lata <alata@codeaurora.org> | Wed May 13 15:08:18 2020 -0700 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Mon Nov 02 08:27:49 2020 -0800 |
tree | 99b71aaa96bd0a732a947afc8991f98f11acfe25 | |
parent | 0a861c4b13ee7ce5c3b20ae15bee6d9493de7a42 [diff] |
hal: ext_hw_plugin: Fix missing break statement in check usecase Add missing break statement in ext_hw_plugin_check_plugin_usecase for USECASE_ICC_CALL case. Change-Id: I820f01acfe8ed28b55d0418986796539bb635684
diff --git a/hal/audio_extn/ext_hw_plugin.c b/hal/audio_extn/ext_hw_plugin.c index 5c78caa..cb79537 100644 --- a/hal/audio_extn/ext_hw_plugin.c +++ b/hal/audio_extn/ext_hw_plugin.c
@@ -201,6 +201,7 @@ break; case USECASE_ICC_CALL: *plugin_usecase = AUDIO_HAL_PLUGIN_USECASE_ICC; + break; default: ret = -EINVAL; }