Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe23747f authored by Aditya Bavanari's avatar Aditya Bavanari Committed by Gerrit - the friendly Code Review server
Browse files

dsp: lsm: Change wake up latency for LAB module



In order to reduce the LPI memory consumption,
reduce the apps wake up latency from 250msec
to 40msec in LAB module config.

Change-Id: I5451e2b43b81ce7c6f8840f774b74e3cffc0a032
Signed-off-by: default avatarAditya Bavanari <abavanar@codeaurora.org>
parent da9e82f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2393,7 +2393,7 @@ int q6lsm_lab_control(struct lsm_client *client, u32 enable,
	lab_config_hdr.param_id = LSM_PARAM_ID_LAB_CONFIG;
	lab_config_hdr.param_size = sizeof(lab_config);
	lab_config.minor_version = 1;
	lab_config.wake_up_latency_ms = 250;
	lab_config.wake_up_latency_ms = 40;
	rc = q6lsm_pack_and_set_params(client, &lab_config_hdr,
				       (uint8_t *) &lab_config,
				       LSM_SESSION_CMD_SET_PARAMS);