Skip to content

Commit

Permalink
iommu/unisoc: Fix spelling mistake "sixe" -> "size"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210319095750.5624-1-colin.king@canonical.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
  • Loading branch information
Colin Ian King authored and Joerg Roedel committed Mar 19, 2021
1 parent b23e4fc commit 0bb868e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iommu/sprd-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ static int sprd_iommu_map(struct iommu_domain *domain, unsigned long iova,
}

if (iova < start || (iova + size) > (end + 1)) {
dev_err(dom->sdev->dev, "(iova(0x%lx) + sixe(%zx)) are not in the range!\n",
dev_err(dom->sdev->dev, "(iova(0x%lx) + size(%zx)) are not in the range!\n",
iova, size);
return -EINVAL;
}
Expand Down

0 comments on commit 0bb868e

Please sign in to comment.