Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d97b665e authored by Satya Rama Aditya Pinapala's avatar Satya Rama Aditya Pinapala Committed by Gerrit - the friendly Code Review server
Browse files

disp: msm: move msm_drv probe to module level



With the introduction of sync state drivers, msm_drm probe can be
moved back to module level from late init.  It is now guaranteed
that the dependencies are probed before the actual driver is.

Change-Id: Ib7c3e0e3c3d32b37b7672b6119bcf5371783659d
Signed-off-by: default avatarSatya Rama Aditya Pinapala <psraditya30@codeaurora.org>
parent 466dcda3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2002,7 +2002,7 @@ static void __exit msm_drm_unregister(void)
	msm_smmu_driver_cleanup();
}

late_initcall(msm_drm_register);
module_init(msm_drm_register);
module_exit(msm_drm_unregister);

MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");