aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-06-13 18:14:36 -0700
committerJoerg Roedel <[email protected]>2024-06-14 16:51:10 +0200
commitc94ad1d5e3885bd4fa6abb695baf5a8f5c3c309c (patch)
tree603bebeb0984f5939e8452850739a90393b8fa1e
parent8d485a69603f667032d61daf4f1cb9464f315e1c (diff)
iommu/iova: Add missing MODULE_DESCRIPTION() macro
With ARCH=arm, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/iommu/iova.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <[email protected]> Acked-by: Robin Murphy <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Joerg Roedel <[email protected]>
-rw-r--r--drivers/iommu/iova.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c
index d59d0ea2fd21..16c6adff3eb7 100644
--- a/drivers/iommu/iova.c
+++ b/drivers/iommu/iova.c
@@ -1000,4 +1000,5 @@ void iova_cache_put(void)
EXPORT_SYMBOL_GPL(iova_cache_put);
MODULE_AUTHOR("Anil S Keshavamurthy <[email protected]>");
+MODULE_DESCRIPTION("IOMMU I/O Virtual Address management");
MODULE_LICENSE("GPL");