diff options
author | Will Deacon <will@kernel.org> | 2020-01-09 15:08:41 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-01-10 10:49:13 +0100 |
commit | fc10cca69ee8af49778ad76c1e5fddf83d5026c8 (patch) | |
tree | 0f0528392185f55511bb013b0b37b751db5e69eb /drivers/iommu/arm-smmu-v3.c | |
parent | iommu/arm-smmu: Update my email address in MODULE_AUTHOR() (diff) | |
download | linux-fc10cca69ee8af49778ad76c1e5fddf83d5026c8.tar.xz linux-fc10cca69ee8af49778ad76c1e5fddf83d5026c8.zip |
drivers/iommu: Initialise module 'owner' field in iommu_device_set_ops()
Requiring each IOMMU driver to initialise the 'owner' field of their
'struct iommu_ops' is error-prone and easily forgotten. Follow the
example set by PCI and USB by assigning THIS_MODULE automatically when
registering the ops structure with IOMMU core.
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers/iommu/arm-smmu-v3.c')
-rw-r--r-- | drivers/iommu/arm-smmu-v3.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iommu/arm-smmu-v3.c b/drivers/iommu/arm-smmu-v3.c index 03dc97842875..e82997a705a8 100644 --- a/drivers/iommu/arm-smmu-v3.c +++ b/drivers/iommu/arm-smmu-v3.c @@ -2733,7 +2733,6 @@ static struct iommu_ops arm_smmu_ops = { .get_resv_regions = arm_smmu_get_resv_regions, .put_resv_regions = arm_smmu_put_resv_regions, .pgsize_bitmap = -1UL, /* Restricted during device attach */ - .owner = THIS_MODULE, }; /* Probing and initialisation functions */ |