diff options
| -rw-r--r-- | hal/msm8974/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hal/msm8974/platform.c b/hal/msm8974/platform.c index 4e759735..81363fb4 100644 --- a/hal/msm8974/platform.c +++ b/hal/msm8974/platform.c @@ -1220,7 +1220,7 @@ bool platform_check_backends_match(snd_device_t snd_device1, snd_device_t snd_de const char * be_itf2 = hw_interface_table[snd_device2]; if (NULL != be_itf1 && NULL != be_itf2) { - if ((NULL == strstr(be_itf2, be_itf1)) || (NULL == strstr(be_itf1, be_itf2))) + if ((NULL == strstr(be_itf2, be_itf1)) && (NULL == strstr(be_itf1, be_itf2))) result = false; } |
