import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / misc / mediatek / connectivity / common_detect / drv_init / fm_drv_init.c
1 /*
2 * Copyright (C) 2011-2014 MediaTek Inc.
3 *
4 * This program is free software: you can redistribute it and/or modify it under the terms of the
5 * GNU General Public License version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 * See the GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License along with this program.
12 * If not, see <http://www.gnu.org/licenses/>.
13 */
14
15 #ifdef DFT_TAG
16 #undef DFT_TAG
17 #endif
18 #define DFT_TAG "[FM-MOD-INIT]"
19
20 #include "wmt_detect.h"
21 #include "fm_drv_init.h"
22
23
24 int do_fm_drv_init(int chip_id)
25 {
26 WMT_DETECT_INFO_FUNC("start to do fm module init \n");
27
28 #ifdef CONFIG_MTK_FM_SUPPORT
29 mtk_wcn_fm_init();
30 #endif
31
32 WMT_DETECT_INFO_FUNC("finish fm module init\n");
33 return 0;
34 }
35
36