Message ID | 20240330202816.83973-1-krzysztof.kozlowski@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/armada: drop driver owner assignment | expand |
diff --git a/drivers/gpu/drm/armada/armada_crtc.c b/drivers/gpu/drm/armada/armada_crtc.c index c78687c755a8..1e67c84525d7 100644 --- a/drivers/gpu/drm/armada/armada_crtc.c +++ b/drivers/gpu/drm/armada/armada_crtc.c @@ -1087,7 +1087,6 @@ struct platform_driver armada_lcd_platform_driver = { .remove_new = armada_lcd_remove, .driver = { .name = "armada-lcd", - .owner = THIS_MODULE, .of_match_table = armada_lcd_of_match, }, .id_table = armada_lcd_platform_ids,
Core in platform_driver_register() already sets the .owner, so driver does not need to. The CRTC driver is registered in different file, armada_drv.c, but that should be the same module and if the values were different core would overwrite them anyway. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- drivers/gpu/drm/armada/armada_crtc.c | 1 - 1 file changed, 1 deletion(-)