diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-03-30 23:33:10 +0300 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2024-04-25 03:27:56 +0300 |
commit | 15b05e672bccb2287b4f4c81be6478ff0338e6d2 (patch) | |
tree | 0168b085341a14dc56e94d96e6a735d648dd3d23 /drivers/gpu/drm/exynos | |
parent | 1179513db8a14c96f4bc8d6b0b5a45a628a2f65e (diff) | |
download | linux-15b05e672bccb2287b4f4c81be6478ff0338e6d2.tar.xz |
drm/exynos: mic: drop driver owner initialization
Core in platform_driver_register() already sets the .owner, so driver
does not need to. Whatever is set here will be anyway overwritten by
main driver calling platform_driver_register().
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_mic.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_mic.c b/drivers/gpu/drm/exynos/exynos_drm_mic.c index e2920960180f..d61ec451807c 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_mic.c +++ b/drivers/gpu/drm/exynos/exynos_drm_mic.c @@ -464,7 +464,6 @@ struct platform_driver mic_driver = { .driver = { .name = "exynos-mic", .pm = pm_ptr(&exynos_mic_pm_ops), - .owner = THIS_MODULE, .of_match_table = exynos_mic_of_match, }, }; |