소스 검색

qcacld-3.0: Use QDF API to get iommu domain attribute

Instead of calling kernel iommu API directly, call the QDF API
to get iommu domain attributes.

Change-Id: I8967a0d47a720d55170f9f61233a6f4190f9133a
CRs-Fixed: 3228757
Jia Ding 2 년 전
부모
커밋
72718c750b
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      core/cds/src/cds_api.c

+ 6 - 4
core/cds/src/cds_api.c

@@ -2900,8 +2900,9 @@ QDF_STATUS cds_smmu_mem_map_setup(qdf_device_t osdev, bool ipa_present)
 	domain = pld_smmu_get_domain(osdev->dev);
 	if (domain) {
 		int attr = 0;
-		int errno = iommu_domain_get_attr(domain,
-						  DOMAIN_ATTR_S1_BYPASS, &attr);
+		int errno = qdf_iommu_domain_get_attr(domain,
+						      QDF_DOMAIN_ATTR_S1_BYPASS,
+						      &attr);
 
 		wlan_smmu_enabled = !errno && !attr;
 	} else {
@@ -2947,8 +2948,9 @@ QDF_STATUS cds_smmu_mem_map_setup(qdf_device_t osdev, bool ipa_present)
 	mapping = pld_smmu_get_mapping(osdev->dev);
 	if (mapping) {
 		int attr = 0;
-		int errno = iommu_domain_get_attr(mapping->domain,
-						  DOMAIN_ATTR_S1_BYPASS, &attr);
+		int errno = qdf_iommu_domain_get_attr(mapping->domain,
+						      QDF_DOMAIN_ATTR_S1_BYPASS,
+						      &attr);
 
 		wlan_smmu_enabled = !errno && !attr;
 	} else {