iommu: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the driver core. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
7b8f16c2d1
commit
98b773cf7b
|
@ -2062,7 +2062,6 @@ static int arm_smmu_device_remove(struct platform_device *pdev)
|
||||||
|
|
||||||
static struct platform_driver arm_smmu_driver = {
|
static struct platform_driver arm_smmu_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "arm-smmu",
|
.name = "arm-smmu",
|
||||||
.of_match_table = of_match_ptr(arm_smmu_of_match),
|
.of_match_table = of_match_ptr(arm_smmu_of_match),
|
||||||
},
|
},
|
||||||
|
|
|
@ -684,7 +684,6 @@ static const struct of_device_id sysmmu_of_match[] __initconst = {
|
||||||
static struct platform_driver exynos_sysmmu_driver __refdata = {
|
static struct platform_driver exynos_sysmmu_driver __refdata = {
|
||||||
.probe = exynos_sysmmu_probe,
|
.probe = exynos_sysmmu_probe,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "exynos-sysmmu",
|
.name = "exynos-sysmmu",
|
||||||
.of_match_table = sysmmu_of_match,
|
.of_match_table = sysmmu_of_match,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1227,7 +1227,6 @@ static const struct of_device_id fsl_of_pamu_ids[] = {
|
||||||
static struct platform_driver fsl_of_pamu_driver = {
|
static struct platform_driver fsl_of_pamu_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "fsl-of-pamu",
|
.name = "fsl-of-pamu",
|
||||||
.owner = THIS_MODULE,
|
|
||||||
},
|
},
|
||||||
.probe = fsl_pamu_probe,
|
.probe = fsl_pamu_probe,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1221,7 +1221,6 @@ static int ipmmu_remove(struct platform_device *pdev)
|
||||||
|
|
||||||
static struct platform_driver ipmmu_driver = {
|
static struct platform_driver ipmmu_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "ipmmu-vmsa",
|
.name = "ipmmu-vmsa",
|
||||||
},
|
},
|
||||||
.probe = ipmmu_probe,
|
.probe = ipmmu_probe,
|
||||||
|
|
|
@ -118,7 +118,6 @@ static int ipmmu_probe(struct platform_device *pdev)
|
||||||
static struct platform_driver ipmmu_driver = {
|
static struct platform_driver ipmmu_driver = {
|
||||||
.probe = ipmmu_probe,
|
.probe = ipmmu_probe,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "ipmmu",
|
.name = "ipmmu",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -425,7 +425,6 @@ static struct platform_driver tegra_gart_driver = {
|
||||||
.probe = tegra_gart_probe,
|
.probe = tegra_gart_probe,
|
||||||
.remove = tegra_gart_remove,
|
.remove = tegra_gart_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "tegra-gart",
|
.name = "tegra-gart",
|
||||||
.pm = &tegra_gart_pm_ops,
|
.pm = &tegra_gart_pm_ops,
|
||||||
.of_match_table = tegra_gart_of_match,
|
.of_match_table = tegra_gart_of_match,
|
||||||
|
|
|
@ -1269,7 +1269,6 @@ static struct platform_driver tegra_smmu_driver = {
|
||||||
.probe = tegra_smmu_probe,
|
.probe = tegra_smmu_probe,
|
||||||
.remove = tegra_smmu_remove,
|
.remove = tegra_smmu_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = "tegra-smmu",
|
.name = "tegra-smmu",
|
||||||
.pm = &tegra_smmu_pm_ops,
|
.pm = &tegra_smmu_pm_ops,
|
||||||
.of_match_table = tegra_smmu_of_match,
|
.of_match_table = tegra_smmu_of_match,
|
||||||
|
|
Loading…
Reference in New Issue