diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:42 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:42 +0400 |
commit | 98b773cf7b6b0d1c2e809702c5c05cf59eaefda8 (patch) | |
tree | eeec8e3a14d1e959f843848bf53e3fb54fec5c3e /drivers/iommu/exynos-iommu.c | |
parent | 7b8f16c2d1a81b29035379b471226ea09817a29c (diff) | |
download | linux-98b773cf7b6b0d1c2e809702c5c05cf59eaefda8.tar.xz |
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>
Diffstat (limited to 'drivers/iommu/exynos-iommu.c')
-rw-r--r-- | drivers/iommu/exynos-iommu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c index 74233186f6f7..e940f5077126 100644 --- a/drivers/iommu/exynos-iommu.c +++ b/drivers/iommu/exynos-iommu.c @@ -684,7 +684,6 @@ static const struct of_device_id sysmmu_of_match[] __initconst = { static struct platform_driver exynos_sysmmu_driver __refdata = { .probe = exynos_sysmmu_probe, .driver = { - .owner = THIS_MODULE, .name = "exynos-sysmmu", .of_match_table = sysmmu_of_match, } |