@@ -30,7 +30,7 @@ config IOMMU_IO_PGTABLE
bool
config IOMMU_IO_PGTABLE_LPAE
- bool "ARMv7/v8 Long Descriptor Format"
+ tristate "ARMv7/v8 Long Descriptor Format"
select IOMMU_IO_PGTABLE
depends on ARM || ARM64 || (COMPILE_TEST && !GENERIC_ATOMIC64)
help
@@ -49,7 +49,7 @@ config IOMMU_IO_PGTABLE_LPAE_SELFTEST
If unsure, say N here.
config IOMMU_IO_PGTABLE_ARMV7S
- bool "ARMv7/v8 Short Descriptor Format"
+ tristate "ARMv7/v8 Short Descriptor Format"
select IOMMU_IO_PGTABLE
depends on ARM || ARM64 || COMPILE_TEST
help
@@ -1015,3 +1015,5 @@ static void __exit arm_v7s_exit(void)
io_pgtable_ops_unregister(&io_pgtable_arm_v7s_init_fns);
}
module_exit(arm_v7s_exit);
+
+MODULE_LICENSE("GPL v2");
@@ -1299,3 +1299,5 @@ static void __exit arm_lpae_exit(void)
io_pgtable_ops_unregister(&io_pgtable_arm_lpae_init_fns[i]);
}
module_exit(arm_lpae_exit);
+
+MODULE_LICENSE("GPL v2");
Now that everything is in place for modular io-pgtable formats, allow the ARM LPAE and ARMV7S io-pgtable formats to be built as modules. Signed-off-by: Isaac J. Manjarres <isaacm@codeaurora.org> --- drivers/iommu/Kconfig | 4 ++-- drivers/iommu/io-pgtable-arm-v7s.c | 2 ++ drivers/iommu/io-pgtable-arm.c | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-)