[PATCH] drm/armada: drop driver owner assignment

Krzysztof Kozlowski posted 1 patch 1 year, 10 months ago
drivers/gpu/drm/armada/armada_crtc.c | 1 -
1 file changed, 1 deletion(-)
[PATCH] drm/armada: drop driver owner assignment
Posted by Krzysztof Kozlowski 1 year, 10 months ago
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(-)

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,
-- 
2.34.1