diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 07:04:28 +0200 |
---|---|---|
committer | Kukjin Kim <kgene@kernel.org> | 2015-07-21 06:18:14 +0200 |
commit | 0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a (patch) | |
tree | 9af204bf9f0c5d9386946cf1cbc0599205ccf2e2 /arch | |
parent | ARM: EXYNOS: Remove duplicated define of SLEEP_MAGIC (diff) | |
download | linux-0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a.tar.xz linux-0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a.zip |
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')
-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, |