On Mon, Nov 05, 2012 at 03:18:15PM +0530, Rahul Sharma wrote: > drivers/iommu/exynos-iommu.c | 28 +++++++++++++++++++++++++--- > 2 files changed, 26 insertions(+), 4 deletions(-)
I added the following build-fix to the arm/exynos branch too: >From e706d84c9fecd7855191eab2f9e2e0234a0f8e05 Mon Sep 17 00:00:00 2001 From: Joerg Roedel <[email protected]> Date: Sat, 17 Nov 2012 22:29:32 +0100 Subject: [PATCH] iommu/exynos: Fix build error in exynos_sysmmu_probe Fix the following build error: CC drivers/iommu/exynos-iommu.o /data/repos/linux/drivers/iommu/exynos-iommu.c: In function 'exynos_sysmmu_probe': /data/repos/linux/drivers/iommu/exynos-iommu.c:647:43: error: dereferencing pointer to incomplete type make[3]: *** [drivers/iommu/exynos-iommu.o] Error 1 Signed-off-by: Joerg Roedel <[email protected]> --- drivers/iommu/exynos-iommu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c index 9079f71..da1975d 100644 --- a/drivers/iommu/exynos-iommu.c +++ b/drivers/iommu/exynos-iommu.c @@ -26,6 +26,7 @@ #include <linux/memblock.h> #include <linux/export.h> #include <linux/of_platform.h> +#include <linux/of.h> #include <asm/cacheflush.h> #include <asm/pgtable.h> -- 1.7.9.5 _______________________________________________ iommu mailing list [email protected] https://lists.linuxfoundation.org/mailman/listinfo/iommu
