Skip to content
Snippets Groups Projects
Commit 15bbdec3 authored by Sakari Ailus's avatar Sakari Ailus Committed by David Woodhouse
Browse files

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: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 9b41760b
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ config IOMMU_IO_PGTABLE_LPAE_SELFTEST ...@@ -42,7 +42,7 @@ config IOMMU_IO_PGTABLE_LPAE_SELFTEST
endmenu endmenu
config IOMMU_IOVA config IOMMU_IOVA
bool tristate
config OF_IOMMU config OF_IOMMU
def_bool y def_bool y
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
*/ */
#include <linux/iova.h> #include <linux/iova.h>
#include <linux/module.h>
#include <linux/slab.h> #include <linux/slab.h>
void void
...@@ -548,3 +549,6 @@ error: ...@@ -548,3 +549,6 @@ error:
free_iova_mem(prev); free_iova_mem(prev);
return NULL; return NULL;
} }
MODULE_AUTHOR("Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>");
MODULE_LICENSE("GPL");
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment