diff options
| author | Nicolin Chen <nicolinc@nvidia.com> | 2026-03-21 15:50:41 -0700 |
|---|---|---|
| committer | Will Deacon <will@kernel.org> | 2026-03-24 13:44:31 +0000 |
| commit | 86bf8580d5b873d165350f61441d0649e4c232f4 (patch) | |
| tree | b5a2f07817aff74938f3c7ff7da2bb2cee992407 /drivers/iommu | |
| parent | 6a01b9f0a5ec38112db54370ce7794db2be5a5de (diff) | |
iommu/arm-smmu-v3: Fix typos introduced by arm_smmu_invs
These are introduced by separate commits, so not submitting with a "Fixes"
line, since they aren't critical.
Signed-off-by: Nicolin Chen <nicolinc@nvidia.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers/iommu')
| -rw-r--r-- | drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 6 | ||||
| -rw-r--r-- | drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c index c3c6987da950..b841efbcc9e9 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -1128,7 +1128,7 @@ static inline int arm_smmu_invs_iter_next_cmp(struct arm_smmu_invs *invs_l, * Both @invs and @to_merge must be sorted, to ensure the returned array will be * sorted as well. * - * Caller is resposible for freeing the @invs and the returned new one. + * Caller is responsible for freeing the @invs and the returned new one. * * Entries marked as trash will be purged in the returned array. */ @@ -1258,7 +1258,7 @@ EXPORT_SYMBOL_IF_KUNIT(arm_smmu_invs_unref); * This function must be locked and serialized with arm_smmu_invs_merge() and * arm_smmu_invs_unref(), but do not lockdep on any lock for KUNIT test. * - * Caller is resposible for freeing the @invs and the returned new one. + * Caller is responsible for freeing the @invs and the returned new one. */ VISIBLE_IF_KUNIT struct arm_smmu_invs *arm_smmu_invs_purge(struct arm_smmu_invs *invs) @@ -2739,7 +2739,7 @@ void arm_smmu_domain_inv_range(struct arm_smmu_domain *smmu_domain, * But in a race, these two can be interdependent, making it a special * case requiring an additional smp_mb() for the write->read ordering. * Pairing with the dma_wmb() in arm_smmu_install_ste_for_dev(), this - * makes sure that IOPTE update prior to this point is visable to SMMU + * makes sure that IOPTE update prior to this point is visible to SMMU * hardware before we load the updated invalidation array. * * [CPU0] | [CPU1] diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h index 36de2b0b2ebe..ef42df4753ec 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h @@ -687,7 +687,7 @@ static inline bool arm_smmu_inv_is_ats(const struct arm_smmu_inv *inv) * greater than @max_invs * @num_trashes: number of trash entries in the array for arm_smmu_invs_purge(). * Must not be greater than @num_invs - * @rwlock: optional rwlock to fench ATS operations + * @rwlock: optional rwlock to fence ATS operations * @has_ats: flag if the array contains an INV_TYPE_ATS or INV_TYPE_ATS_FULL * @rcu: rcu head for kfree_rcu() * @inv: flexible invalidation array |
