From: Krzysztof Kozlowski Date: Fri, 10 Jul 2015 05:04:28 +0000 (+0900) Subject: ARM: EXYNOS: Drop owner assignment in pmu.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0e6262a097929eb9fcfb4cdc1cbe76f16b187d7a;p=linux-beck.git 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 Signed-off-by: Kukjin Kim --- 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,