From 11003e47800f572c4506d6bd1e7c049b2f90fd16 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Wed, 17 Sep 2025 14:47:37 +0200 Subject: [PATCH] iommu: qcom-smmu: Add qcom,sm6350-smmu-500 compatible This SoC doesn't have the generic compatible. Reviewed-by: Neil Armstrong Signed-off-by: Luca Weiss --- drivers/iommu/qcom-hyp-smmu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/iommu/qcom-hyp-smmu.c b/drivers/iommu/qcom-hyp-smmu.c index 2e51ce4f242..161e0b60091 100644 --- a/drivers/iommu/qcom-hyp-smmu.c +++ b/drivers/iommu/qcom-hyp-smmu.c @@ -388,8 +388,9 @@ static struct iommu_ops qcom_smmu_ops = { }; static const struct udevice_id qcom_smmu500_ids[] = { - { .compatible = "qcom,sdm845-smmu-500" }, { .compatible = "qcom,sc7280-smmu-500" }, + { .compatible = "qcom,sdm845-smmu-500" }, + { .compatible = "qcom,sm6350-smmu-500" }, { .compatible = "qcom,smmu-500", }, { /* sentinel */ } }; -- 2.47.3