diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 05:04:28 (GMT) |
---|---|---|
committer | Kukjin Kim <kgene@kernel.org> | 2015-07-21 04:18:14 (GMT) |
commit | 0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a (patch) | |
tree | 9af204bf9f0c5d9386946cf1cbc0599205ccf2e2 /arch/arm/mach-exynos | |
parent | 054e6aa198b4bb42d059951e08f05147b64a79f9 (diff) | |
download | linux-0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a.tar.xz |
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')
-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 8d5b0dc..de68938 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, |