diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-09-02 13:32:31 -0400 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2011-09-05 09:14:37 -0400 |
commit | b4550d415a2e1668822ebf3a12b481548756b4e3 (patch) | |
tree | fac76ac3e6c83bcc620b60ca6c51dd9a0fd292bb /drivers/iommu/omap-iommu.c | |
parent | 329d8d3b474923087f6988737ff12137b58e55cc (diff) |
iommu/omap: cleanup: remove a redundant statement
Tiny cleanup that removes a redundant 'return' statement.
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'drivers/iommu/omap-iommu.c')
-rw-r--r-- | drivers/iommu/omap-iommu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c index 90744afbed71..4311bc32cfa6 100644 --- a/drivers/iommu/omap-iommu.c +++ b/drivers/iommu/omap-iommu.c | |||
@@ -1069,12 +1069,10 @@ static int omap_iommu_map(struct iommu_domain *domain, unsigned long da, | |||
1069 | iotlb_init_entry(&e, da, pa, flags); | 1069 | iotlb_init_entry(&e, da, pa, flags); |
1070 | 1070 | ||
1071 | ret = omap_iopgtable_store_entry(oiommu, &e); | 1071 | ret = omap_iopgtable_store_entry(oiommu, &e); |
1072 | if (ret) { | 1072 | if (ret) |
1073 | dev_err(dev, "omap_iopgtable_store_entry failed: %d\n", ret); | 1073 | dev_err(dev, "omap_iopgtable_store_entry failed: %d\n", ret); |
1074 | return ret; | ||
1075 | } | ||
1076 | 1074 | ||
1077 | return 0; | 1075 | return ret; |
1078 | } | 1076 | } |
1079 | 1077 | ||
1080 | static int omap_iommu_unmap(struct iommu_domain *domain, unsigned long da, | 1078 | static int omap_iommu_unmap(struct iommu_domain *domain, unsigned long da, |