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

Commit 3f77d83e authored by Junzhe Zou's avatar Junzhe Zou
Browse files

msm: camera: reqmgr: Fix condition check in SOF trigger



Fix condition check in CRM when SOF comes.

CRs-fixed: 2099393
Change-Id: I93a160e8a4acb835e43efce226cd877675b7bccd
Signed-off-by: default avatarJunzhe Zou <jnzhezou@codeaurora.org>
parent 249ccba4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ static int __cam_req_mgr_process_req(struct cam_req_mgr_core_link *link,
		return rc;

	if (trigger == CAM_TRIGGER_POINT_SOF) {
		if (!link->trigger_mask) {
		if (link->trigger_mask) {
			CAM_ERR(CAM_CRM, "Applying for last EOF fails");
			return -EINVAL;
		}