]> git.karo-electronics.de Git - linux-beck.git/commitdiff
iommu/exynos: Remove unnecessary "&" from function pointers
authorBjorn Helgaas <bhelgaas@google.com>
Thu, 8 May 2014 20:49:14 +0000 (14:49 -0600)
committerJoerg Roedel <jroedel@suse.de>
Wed, 14 May 2014 13:25:57 +0000 (15:25 +0200)
Remove unnecessary "&" from function pointers in exynos_iommu_ops.

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

index 82aecd0ce74db044187070e65bbcd4f1fd0966c7..09f69b1d80fc75c79e2689486f2f689144716958 100644 (file)
@@ -1168,15 +1168,15 @@ static void exynos_iommu_remove_device(struct device *dev)
 }
 
 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,
-       .add_device = &exynos_iommu_add_device,
-       .remove_device = &exynos_iommu_remove_device,
+       .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,
+       .add_device = exynos_iommu_add_device,
+       .remove_device = exynos_iommu_remove_device,
        .pgsize_bitmap = SECT_SIZE | LPAGE_SIZE | SPAGE_SIZE,
 };