diff options
author | Brian Norris <computersforpeace@gmail.com> | 2013-12-04 20:22:53 -0500 |
---|---|---|
committer | Joerg Roedel <joro@8bytes.org> | 2014-01-07 09:16:27 -0500 |
commit | cbff5634dcb78ae2c3a687de2b097fd26967604d (patch) | |
tree | 60203f7c58cd196f11918c3953f0dbd872eb82b5 | |
parent | b62dfd29eeaf12f8bc79a50f680901e84b351851 (diff) |
iommu: add missing include
Fix a warning in of_iommu.c:
drivers/iommu/of_iommu.c:38:5: warning: no previous prototype for 'of_get_dma_window' [-Wmissing-prototypes]
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Cc: Hiroshi DOYU <hdoyu@nvidia.com>
Signed-off-by: Joerg Roedel <joro@8bytes.org>
-rw-r--r-- | drivers/iommu/of_iommu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iommu/of_iommu.c b/drivers/iommu/of_iommu.c index ee249bc959f8..e550ccb7634e 100644 --- a/drivers/iommu/of_iommu.c +++ b/drivers/iommu/of_iommu.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/export.h> | 20 | #include <linux/export.h> |
21 | #include <linux/limits.h> | 21 | #include <linux/limits.h> |
22 | #include <linux/of.h> | 22 | #include <linux/of.h> |
23 | #include <linux/of_iommu.h> | ||
23 | 24 | ||
24 | /** | 25 | /** |
25 | * of_get_dma_window - Parse *dma-window property and returns 0 if found. | 26 | * of_get_dma_window - Parse *dma-window property and returns 0 if found. |