Use subsys_initcall() instead of module_init() (which compiles to device_initcall() for built-ins) for drm_drv, so its initialization code always runs before any (built-in) drivers. This happened to work correctly so far due to the order of linking in the Makefiles, but this should not be relied upon.
Cc: Matthew Auld <[email protected]> Cc: Danilo Krummrich <[email protected]> Cc: Maarten Lankhorst <[email protected]> Cc: Maxime Ripard <[email protected]> Cc: Thomas Zimmermann <[email protected]> Cc: David Airlie <[email protected]> Cc: Simona Vetter <[email protected]> Signed-off-by: Koen Koning <[email protected]> --- drivers/gpu/drm/drm_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 2915118436ce..db974f769692 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -1271,5 +1271,5 @@ static int __init drm_core_init(void) return ret; } -module_init(drm_core_init); +subsys_initcall(drm_core_init); module_exit(drm_core_exit); -- 2.48.1
