diff options
| author | Krzysztof Kozlowski <[email protected]> | 2024-03-30 21:38:28 +0100 |
|---|---|---|
| committer | Maxime Ripard <[email protected]> | 2024-07-05 13:18:33 +0200 |
| commit | c41ef1b42af789dca5846493a4a9b6df398fc0ad (patch) | |
| tree | 24741538cf060423335d6d89928398d78a8bec8f | |
| parent | 1fea3e2656595fe8a9d9485aaae1bfa3a14f2d31 (diff) | |
drm/sti: dvo: drop driver owner assignment
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 <[email protected]>
Acked-by: Alain Volmat <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Signed-off-by: Maxime Ripard <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/sti/sti_dvo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sti/sti_dvo.c b/drivers/gpu/drm/sti/sti_dvo.c index 48a5d49fc131..68b8197b3dd1 100644 --- a/drivers/gpu/drm/sti/sti_dvo.c +++ b/drivers/gpu/drm/sti/sti_dvo.c @@ -582,7 +582,6 @@ MODULE_DEVICE_TABLE(of, dvo_of_match); struct platform_driver sti_dvo_driver = { .driver = { .name = "sti-dvo", - .owner = THIS_MODULE, .of_match_table = dvo_of_match, }, .probe = sti_dvo_probe, |