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

Commit 68e85fd7 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "iommu: arm-smmu: Fix list iteration error" into msm-4.9

parents e79ab595 f8ac0fb5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4124,10 +4124,10 @@ static struct qsmmuv500_tbu_device *qsmmuv500_find_tbu(
	list_for_each_entry(tbu, &data->tbus, list) {
		if (tbu->sid_start <= sid &&
		    sid < tbu->sid_start + tbu->num_sids)
			break;
	}
			return tbu;
	}
	return NULL;
}

static void qsmmuv500_device_reset(struct arm_smmu_device *smmu)
{