drm/vc4: fix platform_no_drv_owner.cocci warnings
drivers/gpu/drm/vc4/vc4_drv.c:248:3-8: No need to set .owner here. The core will do it. Remove .owner field if calls are used which set it automatically Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
91276ae2ea
commit
e2ab3218f4
|
@ -259,7 +259,6 @@ static struct platform_driver vc4_platform_driver = {
|
||||||
.remove = vc4_platform_drm_remove,
|
.remove = vc4_platform_drm_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "vc4-drm",
|
.name = "vc4-drm",
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.of_match_table = vc4_of_match,
|
.of_match_table = vc4_of_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue