diff options
author | Krzysztof Kozlowski | 2015-07-10 14:04:28 +0900 |
---|---|---|
committer | Kukjin Kim | 2015-07-21 13:18:14 +0900 |
commit | 0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a (patch) | |
tree | 9af204bf9f0c5d9386946cf1cbc0599205ccf2e2 /arch/arm/mach-exynos/pmu.c | |
parent | 054e6aa198b4bb42d059951e08f05147b64a79f9 (diff) |
ARM: EXYNOS: Drop owner assignment in pmu.c
platform_driver does not need to set an owner because
platform_driver_register() will set it.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Kukjin Kim <kgene@kernel.org>
Diffstat (limited to 'arch/arm/mach-exynos/pmu.c')
-rw-r--r-- | arch/arm/mach-exynos/pmu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c index 8d5b0dcc618b..de68938ee6aa 100644 --- a/arch/arm/mach-exynos/pmu.c +++ b/arch/arm/mach-exynos/pmu.c @@ -991,7 +991,6 @@ static int exynos_pmu_probe(struct platform_device *pdev) static struct platform_driver exynos_pmu_driver = { .driver = { .name = "exynos-pmu", - .owner = THIS_MODULE, .of_match_table = exynos_pmu_of_device_ids, }, .probe = exynos_pmu_probe, |