aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2014-05-08 16:49:14 -0400
committerJoerg Roedel <jroedel@suse.de>2014-05-14 09:25:57 -0400
commitba5fa6f652151882ee630c70373365cf5c043df7 (patch)
tree9b10712b323f58f6a7c112f5536ef0ffba70fee1
parentdf15e1de9c7f18289f40c9cf1f6bfa5fd662b1dd (diff)
iommu/exynos: Remove unnecessary "&" from function pointers
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>
-rw-r--r--drivers/iommu/exynos-iommu.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c
index 82aecd0ce74d..09f69b1d80fc 100644
--- a/drivers/iommu/exynos-iommu.c
+++ b/drivers/iommu/exynos-iommu.c
@@ -1168,15 +1168,15 @@ static void exynos_iommu_remove_device(struct device *dev)
1168} 1168}
1169 1169
1170static struct iommu_ops exynos_iommu_ops = { 1170static struct iommu_ops exynos_iommu_ops = {
1171 .domain_init = &exynos_iommu_domain_init, 1171 .domain_init = exynos_iommu_domain_init,
1172 .domain_destroy = &exynos_iommu_domain_destroy, 1172 .domain_destroy = exynos_iommu_domain_destroy,
1173 .attach_dev = &exynos_iommu_attach_device, 1173 .attach_dev = exynos_iommu_attach_device,
1174 .detach_dev = &exynos_iommu_detach_device, 1174 .detach_dev = exynos_iommu_detach_device,
1175 .map = &exynos_iommu_map, 1175 .map = exynos_iommu_map,
1176 .unmap = &exynos_iommu_unmap, 1176 .unmap = exynos_iommu_unmap,
1177 .iova_to_phys = &exynos_iommu_iova_to_phys, 1177 .iova_to_phys = exynos_iommu_iova_to_phys,
1178 .add_device = &exynos_iommu_add_device, 1178 .add_device = exynos_iommu_add_device,
1179 .remove_device = &exynos_iommu_remove_device, 1179 .remove_device = exynos_iommu_remove_device,
1180 .pgsize_bitmap = SECT_SIZE | LPAGE_SIZE | SPAGE_SIZE, 1180 .pgsize_bitmap = SECT_SIZE | LPAGE_SIZE | SPAGE_SIZE,
1181}; 1181};
1182 1182