st-hal: fix ec ref mixer not reset
For barge in usecaes, when session is switched to non-LPI mode,
ec ref can be enabled if valid profile is set.
When the background music is stopped, lpi flag can be reset, this
makes ec profile returned for this session to be none, thus reset
of ec ref mixer is skipped.
Then next time when the session is stopped and started again on
non-LPI mode, ec won't be applied.
When getting the ec profile, check the current session lpi mode.
Change-Id: I394552059b3532877f313fb981ba57c3e7b002c1
diff --git a/st_hw_session_lsm.c b/st_hw_session_lsm.c
index 1ff1abc..f1a915b 100644
--- a/st_hw_session_lsm.c
+++ b/st_hw_session_lsm.c
@@ -580,7 +580,7 @@
{
st_profile_type_t profile_type;
- profile_type = (p_ses->vendor_uuid_info && !p_ses->stdev->lpi_enable) ?
+ profile_type = (p_ses->vendor_uuid_info && !p_ses->lpi_enable) ?
p_ses->vendor_uuid_info->profile_type : ST_PROFILE_TYPE_NONE;
return profile_type;
}