Audio: DLKM support for all audio modules

Switch to DLKM for all audio kernel modules.

Change-Id: I6a96023a21f655f873531af9ace81f2b01eb0f58
Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
このコミットが含まれているのは:
Laxminath Kasam
2017-10-05 01:44:16 +05:30
コミット 8b1366a648
115個のファイルの変更5347行の追加353行の削除

ファイルの表示

@@ -3335,8 +3335,19 @@ static struct platform_driver msm_cpe_lsm_driver = {
.probe = msm_cpe_lsm_probe,
.remove = msm_cpe_lsm_remove,
};
module_platform_driver(msm_cpe_lsm_driver);
int __init msm_cpe_lsm_init(void)
{
return platform_driver_register(&msm_cpe_lsm_driver);
}
void __exit msm_cpe_lsm_exit(void)
{
platform_driver_unregister(&msm_cpe_lsm_driver);
}
module_init(msm_cpe_lsm_init);
module_exit(msm_cpe_lsm_exit);
MODULE_DESCRIPTION("CPE LSM platform driver");
MODULE_DEVICE_TABLE(of, msm_cpe_lsm_dt_match);
MODULE_LICENSE("GPL v2");