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:

cometido por
Chandan Uddaraju

ascendente
eaa458b165
cometimento
8b8bfe0165
@@ -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");
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador