diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2015-07-13 14:31:30 +0300 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2015-07-28 17:48:01 +0300 |
commit | 15bbdec3931e617231c12b0920e497e87ec8c2c6 (patch) | |
tree | 9545df03c86b7a7a8bcfcf2a1f2fdf526ccc1c23 | |
parent | 9b41760b03816b34f4c9eee2cbb8fda8439920fc (diff) | |
download | linux-15bbdec3931e617231c12b0920e497e87ec8c2c6.tar.xz |
iommu: Make the iova library a module
The iova library has use outside the intel-iommu driver, thus make it a
module.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/iommu/Kconfig | 2 | ||||
-rw-r--r-- | drivers/iommu/iova.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig index f1fb1d3ccc56..0a141cd44ddd 100644 --- a/drivers/iommu/Kconfig +++ b/drivers/iommu/Kconfig @@ -42,7 +42,7 @@ config IOMMU_IO_PGTABLE_LPAE_SELFTEST endmenu config IOMMU_IOVA - bool + tristate config OF_IOMMU def_bool y diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c index cbd74c79b212..fa0adef32bd6 100644 --- a/drivers/iommu/iova.c +++ b/drivers/iommu/iova.c @@ -18,6 +18,7 @@ */ #include <linux/iova.h> +#include <linux/module.h> #include <linux/slab.h> void @@ -548,3 +549,6 @@ error: free_iova_mem(prev); return NULL; } + +MODULE_AUTHOR("Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>"); +MODULE_LICENSE("GPL"); |