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

Commit 0061cf0a authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "qseecom: Propagate correct return value from TZ"

parents 40a4ed25 7f9aeb17
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3037,8 +3037,9 @@ static int __qseecom_unload_app(struct qseecom_dev_handle *data,
			sizeof(struct qseecom_unload_app_ireq),
			&resp, sizeof(resp));
	if (ret) {
		pr_err("scm_call to unload app (id = %d) failed\n", app_id);
		return -EFAULT;
		pr_err("scm_call to unload app (id = %d) failed ret: %d\n",
			app_id, ret);
		return ret;
	}
	switch (resp.result) {
	case QSEOS_RESULT_SUCCESS: