Skip to content

Commit c01ce25

Browse files
algonellaaron-ang
authored andcommitted
iommu/exynos: Fix typos
There are some typos in comments/messages: - modyfying -> modifying - Unabled -> Unable Fix them via codespell. Signed-off-by: Andrew Kreimer <algonell@gmail.com> Link: https://lore.kernel.org/r/20250210112027.29791-1-algonell@gmail.com Signed-off-by: Joerg Roedel <jroedel@suse.de>
1 parent 7f4a78b commit c01ce25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/iommu/exynos-iommu.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ struct exynos_iommu_domain {
249249
struct list_head clients; /* list of sysmmu_drvdata.domain_node */
250250
sysmmu_pte_t *pgtable; /* lv1 page table, 16KB */
251251
short *lv2entcnt; /* free lv2 entry counter for each section */
252-
spinlock_t lock; /* lock for modyfying list of clients */
252+
spinlock_t lock; /* lock for modifying list of clients */
253253
spinlock_t pgtablelock; /* lock for modifying page table @ pgtable */
254254
struct iommu_domain domain; /* generic domain data structure */
255255
};
@@ -292,7 +292,7 @@ struct sysmmu_drvdata {
292292
struct clk *aclk; /* SYSMMU's aclk clock */
293293
struct clk *pclk; /* SYSMMU's pclk clock */
294294
struct clk *clk_master; /* master's device clock */
295-
spinlock_t lock; /* lock for modyfying state */
295+
spinlock_t lock; /* lock for modifying state */
296296
bool active; /* current status */
297297
struct exynos_iommu_domain *domain; /* domain we belong to */
298298
struct list_head domain_node; /* node for domain clients list */
@@ -746,7 +746,7 @@ static int exynos_sysmmu_probe(struct platform_device *pdev)
746746
ret = devm_request_irq(dev, irq, exynos_sysmmu_irq, 0,
747747
dev_name(dev), data);
748748
if (ret) {
749-
dev_err(dev, "Unabled to register handler of irq %d\n", irq);
749+
dev_err(dev, "Unable to register handler of irq %d\n", irq);
750750
return ret;
751751
}
752752

0 commit comments

Comments
 (0)