iommu/exynos: Remove unnecessary "&" from function pointers
authorBjorn Helgaas <bhelgaas@google.com>
Tue, 20 May 2014 22:54:23 +0000 (16:54 -0600)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 26 May 2014 23:28:28 +0000 (17:28 -0600)
Remove unnecessary "&" from function pointers in exynos_iommu_ops.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
drivers/iommu/exynos-iommu.c

index 0740189..2ca0744 100644 (file)
@@ -1011,13 +1011,13 @@ static phys_addr_t exynos_iommu_iova_to_phys(struct iommu_domain *domain,
 }
 
 static struct iommu_ops exynos_iommu_ops = {
-       .domain_init = &exynos_iommu_domain_init,
-       .domain_destroy = &exynos_iommu_domain_destroy,
-       .attach_dev = &exynos_iommu_attach_device,
-       .detach_dev = &exynos_iommu_detach_device,
-       .map = &exynos_iommu_map,
-       .unmap = &exynos_iommu_unmap,
-       .iova_to_phys = &exynos_iommu_iova_to_phys,
+       .domain_init = exynos_iommu_domain_init,
+       .domain_destroy = exynos_iommu_domain_destroy,
+       .attach_dev = exynos_iommu_attach_device,
+       .detach_dev = exynos_iommu_detach_device,
+       .map = exynos_iommu_map,
+       .unmap = exynos_iommu_unmap,
+       .iova_to_phys = exynos_iommu_iova_to_phys,
        .pgsize_bitmap = SECT_SIZE | LPAGE_SIZE | SPAGE_SIZE,
 };