aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu/omap-iovmm.c
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2013-05-30 19:10:59 -0400
committerJoerg Roedel <joro@8bytes.org>2013-06-20 10:53:26 -0400
commitb6c2e09f74a1f95aa77b478b40b41538a2ccb8f0 (patch)
treea334d605181f9c577c28bf359cf1901db8d258af /drivers/iommu/omap-iovmm.c
parent2abfcfbcf02972f939196dce0ddf8dd470f23907 (diff)
iommu/omap: fix checkpatch warnings in omap iommu code
This patch fixes the checkpatch warnings in omap iommu code, most of them are related to broken strings. Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Joerg Roedel <joro@8bytes.org>
Diffstat (limited to 'drivers/iommu/omap-iovmm.c')
-rw-r--r--drivers/iommu/omap-iovmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iommu/omap-iovmm.c b/drivers/iommu/omap-iovmm.c
index 46d875690739..d14725984153 100644
--- a/drivers/iommu/omap-iovmm.c
+++ b/drivers/iommu/omap-iovmm.c
@@ -102,8 +102,8 @@ static size_t sgtable_len(const struct sg_table *sgt)
102 } 102 }
103 103
104 if (i && sg->offset) { 104 if (i && sg->offset) {
105 pr_err("%s: sg[%d] offset not allowed in internal " 105 pr_err("%s: sg[%d] offset not allowed in internal entries\n",
106 "entries\n", __func__, i); 106 __func__, i);
107 return 0; 107 return 0;
108 } 108 }
109 109