diff options
author | Lu Baolu <baolu.lu@linux.intel.com> | 2022-11-22 01:29:47 +0100 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2022-11-22 14:05:21 +0100 |
commit | a8204479f284a9d21c22e2fd7c9f7564b5828553 (patch) | |
tree | 65304f592f85f3bb89d8f40950bf5c2159b93953 /drivers/iommu | |
parent | iommu/vt-d: Rename iommu_disable_dev_iotlb() (diff) | |
download | linux-a8204479f284a9d21c22e2fd7c9f7564b5828553.tar.xz linux-a8204479f284a9d21c22e2fd7c9f7564b5828553.zip |
iommu/vt-d: Rename domain_add_dev_info()
dmar_domain_attach_device() is more meaningful according to what this
helper does.
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Link: https://lore.kernel.org/r/20221118132451.114406-6-baolu.lu@linux.intel.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu')
-rw-r--r-- | drivers/iommu/intel/iommu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c index a5885665ccef..3bd79ae238f2 100644 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -2453,7 +2453,8 @@ static int __init si_domain_init(int hw) return 0; } -static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev) +static int dmar_domain_attach_device(struct dmar_domain *domain, + struct device *dev) { struct device_domain_info *info = dev_iommu_priv_get(dev); struct intel_iommu *iommu; @@ -4288,7 +4289,7 @@ static int intel_iommu_attach_device(struct iommu_domain *domain, if (ret) return ret; - return domain_add_dev_info(to_dmar_domain(domain), dev); + return dmar_domain_attach_device(to_dmar_domain(domain), dev); } static int intel_iommu_map(struct iommu_domain *domain, |