1

drm/exynos: hdmi: 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>
This commit is contained in:
Krzysztof Kozlowski 2024-03-30 21:33:14 +01:00 committed by Inki Dae
parent c3147c08a2
commit d6e733f2fb
No known key found for this signature in database
GPG Key ID: C5601BECE83FF9B6

View File

@ -2126,7 +2126,6 @@ struct platform_driver hdmi_driver = {
.remove_new = hdmi_remove, .remove_new = hdmi_remove,
.driver = { .driver = {
.name = "exynos-hdmi", .name = "exynos-hdmi",
.owner = THIS_MODULE,
.pm = &exynos_hdmi_pm_ops, .pm = &exynos_hdmi_pm_ops,
.of_match_table = hdmi_match_types, .of_match_table = hdmi_match_types,
}, },