8b1366a648
Switch to DLKM for all audio kernel modules. Change-Id: I6a96023a21f655f873531af9ace81f2b01eb0f58 Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
/*
|
|
Copyright (c) 2017, The Linux Foundation. All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2 and
|
|
only version 2 as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include "q6_init.h"
|
|
|
|
static int __init audio_q6_init(void)
|
|
{
|
|
adsp_err_init();
|
|
audio_cal_init();
|
|
rtac_init();
|
|
adm_init();
|
|
afe_init();
|
|
q6asm_init();
|
|
q6lsm_init();
|
|
voice_init();
|
|
core_init();
|
|
msm_audio_ion_init();
|
|
audio_slimslave_init();
|
|
avtimer_init();
|
|
return 0;
|
|
}
|
|
|
|
static void __exit audio_q6_exit(void)
|
|
{
|
|
avtimer_exit();
|
|
audio_slimslave_exit();
|
|
msm_audio_ion_exit();
|
|
core_exit();
|
|
voice_exit();
|
|
q6lsm_exit();
|
|
q6asm_exit();
|
|
afe_exit();
|
|
adm_exit();
|
|
rtac_exit();
|
|
audio_cal_exit();
|
|
adsp_err_exit();
|
|
}
|
|
|
|
module_init(audio_q6_init);
|
|
module_exit(audio_q6_exit);
|
|
MODULE_DESCRIPTION("Q6 module");
|
|
MODULE_LICENSE("GPL v2");
|