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

Commit 0c15225e authored by Jiten Patel's avatar Jiten Patel Committed by Gerrit - the friendly Code Review server
Browse files

qseecom: use legacy command for slateapp



use the legacy command for sending any data
to trusted application only if the app name
is slateapp.

Change-Id: Iecbe75c45b253ef87de3306b89b50c39008550fe
Signed-off-by: default avatarJiten Patel <jitepate@codeaurora.org>
parent f291b2fb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5307,8 +5307,10 @@ int qseecom_send_command(struct qseecom_handle *handle, void *send_buf,
		}
		perf_enabled = true;
	}
	if (!strcmp(data->client.app_name, "securemm"))
	if (!strcmp(data->client.app_name, "securemm") ||
	    !strcmp(data->client.app_name, "slateapp")) {
		data->use_legacy_cmd = true;
	}

	ret = __qseecom_send_cmd(data, &req, false);