ANDROID: iommu: fix export symbol type

In commit 91740f19373d ("FROMLIST: drivers/iommu: Export core IOMMU API
symbols to permit modular drivers") a new symbol was exported, but it
should have been set as a _GPL symbol.

Fix this up by properly changing the export type.

Bug: 140290589
Cc: Will Deacon <willdeacon@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I5c1a4ac3dcaa1362c43b103c80ca278b2174039f
This commit is contained in:
Greg Kroah-Hartman 2020-04-30 12:13:31 +02:00
parent 00bf2bf979
commit 8840fd0afc

View File

@ -1428,7 +1428,7 @@ struct iommu_group *iommu_group_get_for_dev(struct device *dev)
return group;
}
EXPORT_SYMBOL(iommu_group_get_for_dev);
EXPORT_SYMBOL_GPL(iommu_group_get_for_dev);
struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
{