Skip to content

Commit ae74c19

Browse files
gregkhjoergroedel
authored andcommitted
iommu: Properly export iommu_group_get_for_dev()
In commit a7ba5c3 ("drivers/iommu: Export core IOMMU API symbols to permit modular drivers") a bunch of iommu symbols were exported, all with _GPL markings except iommu_group_get_for_dev(). That export should also be _GPL like the others. Fixes: a7ba5c3 ("drivers/iommu: Export core IOMMU API symbols to permit modular drivers") Signed-off-by: Greg Kroah-Hartman <[email protected]> Acked-by: Will Deacon <[email protected]> Cc: Joerg Roedel <[email protected]> Cc: John Garry <[email protected]> Cc: Will Deacon <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Joerg Roedel <[email protected]>
1 parent ba61c3d commit ae74c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iommu/iommu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ struct iommu_group *iommu_group_get_for_dev(struct device *dev)
14291429

14301430
return group;
14311431
}
1432-
EXPORT_SYMBOL(iommu_group_get_for_dev);
1432+
EXPORT_SYMBOL_GPL(iommu_group_get_for_dev);
14331433

14341434
struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
14351435
{

0 commit comments

Comments
 (0)