1
0

disp: msm: make msm_drm into single module

Make msm_drm into single module and all child driver
registers and unregisters are handled from parent's
register and unregister respectively.

Change-Id: I017513d1de3b6b25dd5543d7fa7741c0bac1740d
Signed-off-by: Shashank Babu Chinta Venkata <sbchin@codeaurora.org>
Signed-off-by: Narendra Muppalla <NarendraM@codeaurora.org>
Signed-off-by: Chandan Uddaraju <chandanu@codeaurora.org>
Este cometimento está contido em:
Shashank Babu Chinta Venkata
2019-09-23 10:54:29 -07:00
cometido por Chandan Uddaraju
ascendente eaa458b165
cometimento 8b8bfe0165
21 ficheiros modificados com 163 adições e 108 eliminações

Ver ficheiro

@@ -328,18 +328,12 @@ static struct platform_driver msm_hdcp_driver = {
}
};
static int __init msm_hdcp_init(void)
void __init msm_hdcp_register(void)
{
return platform_driver_register(&msm_hdcp_driver);
platform_driver_register(&msm_hdcp_driver);
}
static void __exit msm_hdcp_exit(void)
void __exit msm_hdcp_unregister(void)
{
return platform_driver_unregister(&msm_hdcp_driver);
platform_driver_unregister(&msm_hdcp_driver);
}
module_init(msm_hdcp_init);
module_exit(msm_hdcp_exit);
MODULE_DESCRIPTION("MSM HDCP driver");
MODULE_LICENSE("GPL v2");